Add note to indentation prefs page about using Project->Apply
Default Indentation for currently open documents. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5436 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
parent
9f2d03da07
commit
aad0728959
@ -2,6 +2,9 @@
|
||||
|
||||
* data/filetype_extensions.conf:
|
||||
Add *.latex pattern.
|
||||
* src/interface.c, geany.glade:
|
||||
Add note to indentation prefs page about using Project->Apply
|
||||
Default Indentation for currently open documents.
|
||||
|
||||
|
||||
2010-11-23 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
|
||||
|
||||
25
geany.glade
25
geany.glade
@ -5989,6 +5989,31 @@ Bottom
|
||||
</packing>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label247">
|
||||
<property name="visible">True</property>
|
||||
<property name="label" translatable="yes">Note: To apply these settings to all currently open documents, use <i>Project->Apply Default Indentation</i>.</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">True</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
<property name="wrap">True</property>
|
||||
<property name="selectable">False</property>
|
||||
<property name="xalign">0</property>
|
||||
<property name="yalign">0.5</property>
|
||||
<property name="xpad">0</property>
|
||||
<property name="ypad">0</property>
|
||||
<property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
|
||||
<property name="width_chars">-1</property>
|
||||
<property name="single_line_mode">False</property>
|
||||
<property name="angle">0</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="padding">0</property>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">False</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<widget class="GtkFrame" id="frame27">
|
||||
<property name="visible">True</property>
|
||||
|
||||
@ -2652,6 +2652,7 @@ create_prefs_dialog (void)
|
||||
GtkWidget *label211;
|
||||
GtkWidget *vbox40;
|
||||
GtkWidget *label_project_indent_warning;
|
||||
GtkWidget *label247;
|
||||
GtkWidget *frame27;
|
||||
GtkWidget *alignment30;
|
||||
GtkWidget *vbox25;
|
||||
@ -3773,6 +3774,13 @@ create_prefs_dialog (void)
|
||||
gtk_widget_show (label_project_indent_warning);
|
||||
gtk_box_pack_start (GTK_BOX (vbox40), label_project_indent_warning, FALSE, FALSE, 0);
|
||||
|
||||
label247 = gtk_label_new (_("Note: To apply these settings to all currently open documents, use <i>Project->Apply Default Indentation</i>."));
|
||||
gtk_widget_show (label247);
|
||||
gtk_box_pack_start (GTK_BOX (vbox40), label247, FALSE, FALSE, 0);
|
||||
gtk_label_set_use_markup (GTK_LABEL (label247), TRUE);
|
||||
gtk_label_set_line_wrap (GTK_LABEL (label247), TRUE);
|
||||
gtk_misc_set_alignment (GTK_MISC (label247), 0, 0.5);
|
||||
|
||||
frame27 = gtk_frame_new (NULL);
|
||||
gtk_widget_show (frame27);
|
||||
gtk_box_pack_start (GTK_BOX (vbox40), frame27, FALSE, TRUE, 0);
|
||||
@ -5134,6 +5142,7 @@ create_prefs_dialog (void)
|
||||
GLADE_HOOKUP_OBJECT (prefs_dialog, label211, "label211");
|
||||
GLADE_HOOKUP_OBJECT (prefs_dialog, vbox40, "vbox40");
|
||||
GLADE_HOOKUP_OBJECT (prefs_dialog, label_project_indent_warning, "label_project_indent_warning");
|
||||
GLADE_HOOKUP_OBJECT (prefs_dialog, label247, "label247");
|
||||
GLADE_HOOKUP_OBJECT (prefs_dialog, frame27, "frame27");
|
||||
GLADE_HOOKUP_OBJECT (prefs_dialog, alignment30, "alignment30");
|
||||
GLADE_HOOKUP_OBJECT (prefs_dialog, vbox25, "vbox25");
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user