Kaydet (Commit) 1a7f04c8 authored tarafından Nick Treleaven's avatar Nick Treleaven

Show warning label on Preferences dialog Editor tab when a project

is open.
Move Indentation frame to a separate tab.



git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@3424 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst f0d2f92e
......@@ -13,6 +13,10 @@
now) the existing options are added manually.
Add GeanyProjectPrivate project field.
Add stash_group_set_use_defaults().
* src/interface.c, src/prefs.c, src/prefs.h, geany.glade:
Show warning label on Preferences dialog Editor tab when a project
is open.
Move Indentation frame to a separate tab.
2008-12-22 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
......
This diff is collapsed.
This diff is collapsed.
......@@ -196,7 +196,7 @@ static void init_keybindings(void)
/* note: new prefs should use Stash code in keyfile.c */
void prefs_init_dialog(void)
static void prefs_init_dialog(void)
{
GtkWidget *widget;
GdkColor *color;
......@@ -204,6 +204,9 @@ void prefs_init_dialog(void)
/* Synchronize with Stash settings */
prefs_action(PREF_DISPLAY);
widget = ui_lookup_widget(ui_widgets.prefs_dialog, "label_project_indent_warning");
ui_widget_show_hide(widget, app->project != NULL);
/* General settings */
/* startup */
widget = ui_lookup_widget(ui_widgets.prefs_dialog, "check_load_session");
......
......@@ -55,8 +55,6 @@ GeanyToolPrefs;
extern GeanyToolPrefs tool_prefs;
void prefs_init_dialog(void);
void prefs_show_dialog(void);
void on_prefs_font_choosed(GtkFontButton *widget, gpointer user_data);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment