summary refs log tree commit diff stats
path: root/src/gtk2-prefs
diff options
context:
space:
mode:
authorBerke Viktor <berkeviktor@aol.com>2011-08-17 14:37:09 +0200
committerBerke Viktor <berkeviktor@aol.com>2011-08-17 14:37:09 +0200
commit5c6dacbecf9dc33e348bda1ec9f500c93706b66c (patch)
treecb0fe49e40e6a6dae31ea7535e94dd6e2d11370d /src/gtk2-prefs
parent80be398c40c0750b95fa17c50d97f6510381c70d (diff)
gtk2prefs tweaking
Diffstat (limited to 'src/gtk2-prefs')
-rw-r--r--src/gtk2-prefs/interface.cpp8
-rw-r--r--src/gtk2-prefs/main.cpp6
2 files changed, 7 insertions, 7 deletions
diff --git a/src/gtk2-prefs/interface.cpp b/src/gtk2-prefs/interface.cpp
index adfcc66b..18b66bb6 100644
--- a/src/gtk2-prefs/interface.cpp
+++ b/src/gtk2-prefs/interface.cpp
@@ -138,7 +138,7 @@ create_main_window (void)
 
   main_window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
   gtk_widget_set_name (main_window, "main_window");
-  gtk_window_set_title (GTK_WINDOW (main_window), "Gtk2 Theme Selector");
+  gtk_window_set_title (GTK_WINDOW (main_window), "GTK+ Preference Tool");
 
   main_hbox = gtk_hbox_new (FALSE, 0);
   gtk_widget_set_name (main_hbox, "main_hbox");
@@ -273,11 +273,11 @@ create_main_window (void)
   gtk_widget_show (hbox6666);
   gtk_box_pack_start (GTK_BOX (vbox13), hbox6666, TRUE, TRUE, 0);
 
-  main_use_system_config_checkbutton = gtk_check_button_new_with_mnemonic ("Apply for all users");
+  /* main_use_system_config_checkbutton = gtk_check_button_new_with_mnemonic ("Apply for all users");
   gtk_widget_set_name (main_use_system_config_checkbutton, "main_use_system_config_checkbutton");
   gtk_widget_show (main_use_system_config_checkbutton);
   gtk_box_pack_start (GTK_BOX (hbox6666), main_use_system_config_checkbutton, FALSE, FALSE, 12);
-  gtk_tooltips_set_tip (tooltips, main_use_system_config_checkbutton, "If this is enabled, the program will update the system-wide configuration file. NOT RECOMMENDED!", NULL);
+  gtk_tooltips_set_tip (tooltips, main_use_system_config_checkbutton, "If this is enabled, the program will update the system-wide configuration file. NOT RECOMMENDED!", NULL); */
 
   main_showpreviewtoggle = gtk_toggle_button_new_with_mnemonic ("Show preview >>");
   gtk_widget_set_name (main_showpreviewtoggle, "main_showpreviewtoggle");
@@ -755,7 +755,7 @@ create_main_window (void)
   GLADE_HOOKUP_OBJECT (main_window, label669, "label669");
   GLADE_HOOKUP_OBJECT (main_window, vbox13, "vbox13");
   GLADE_HOOKUP_OBJECT (main_window, hbox6666, "hbox6666");
-  GLADE_HOOKUP_OBJECT (main_window, main_use_system_config_checkbutton, "main_use_system_config_checkbutton");
+  /* GLADE_HOOKUP_OBJECT (main_window, main_use_system_config_checkbutton, "main_use_system_config_checkbutton"); */
   GLADE_HOOKUP_OBJECT (main_window, main_showpreviewtoggle, "main_showpreviewtoggle");
   GLADE_HOOKUP_OBJECT (main_window, hbuttonbox1, "hbuttonbox1");
   GLADE_HOOKUP_OBJECT (main_window, hbox7, "hbox7");
diff --git a/src/gtk2-prefs/main.cpp b/src/gtk2-prefs/main.cpp
index 334c23d1..e1a0415d 100644
--- a/src/gtk2-prefs/main.cpp
+++ b/src/gtk2-prefs/main.cpp
@@ -349,7 +349,7 @@ int main(int argc, char *argv[])
 	populate_with_themes(lookup_widget(g_main_window, "main_themelist"));
 
 
-	std::string about_text = std::string("Gtk2 Theme Selector v") + "\n\
+	std::string about_text = std::string("GTK+ Preference Tool") + "\n\
 \n\
 by Alex Shaduri <ashaduri@gmail.com>\n\
 \n\
@@ -506,10 +506,10 @@ bool save_current_theme()
 
 	std::string conf_file = "";
 
-	if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(lookup_widget(g_main_window, "main_use_system_config_checkbutton")))) {
+	if ((_access( "portable-mode", 0 )) != -1) {
 
 		char* themes_dir_c = gtk_rc_get_theme_dir();
-		char* conf_file_c = g_build_filename(themes_dir_c, "..", "..", "etc", "gtk-2.0", "gtkrc", NULL);
+		char* conf_file_c = g_build_filename("etc", "gtk-2.0", "gtkrc", NULL);
 
 		conf_file = (conf_file_c ? conf_file_c : "");