[gimp/tito: 40/50] Removed global preferences button.
- From: Jehan Pagès <jehanp src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/tito: 40/50] Removed global preferences button.
- Date: Sat, 9 Nov 2013 23:21:35 +0000 (UTC)
commit 40aef5345a862b0bb46cb0267370f46e6a0cd927
Author: Srihari Sriraman <srihari c42 in>
Date: Sun Sep 16 09:16:59 2012 +0530
Removed global preferences button.
Using callback data instead.
app/dialogs/tito-dialog.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/app/dialogs/tito-dialog.c b/app/dialogs/tito-dialog.c
index a8e6be5..4c71519 100644
--- a/app/dialogs/tito-dialog.c
+++ b/app/dialogs/tito-dialog.c
@@ -64,7 +64,6 @@ static GtkWidget *tito_dialog;
static GtkWidget *list;
static GtkWidget *list_view;
static GtkWidget *keyword_entry;
-static GtkWidget *preferences_button;
static gchar *history_file_path;
static gchar *preference_file_path;
@@ -191,7 +190,7 @@ on_focus_out (GtkWidget *widget,
GdkEventFocus *event,
gpointer data)
{
- if(!gtk_widget_is_focus(preferences_button))
+ if(!gtk_widget_is_focus(GTK_WIDGET(data)))
tito_finalizer();
return TRUE;
}
@@ -1084,6 +1083,7 @@ tito_search_dialog (void)
{
GtkWidget *main_vbox, *main_hbox;
GtkWidget *preferences_image;
+ GtkWidget *preferences_button;
tito_dialog= gtk_window_new(GTK_WINDOW_TOPLEVEL);
@@ -1128,7 +1128,7 @@ tito_search_dialog (void)
g_signal_connect (keyword_entry, "key-release-event", G_CALLBACK (key_released), NULL);
g_signal_connect (list, "key_press_event", G_CALLBACK (result_selected), NULL);
g_signal_connect (preferences_button, "clicked", G_CALLBACK(context_menu_invoked),NULL);
- g_signal_connect (tito_dialog, "focus-out-event", G_CALLBACK (on_focus_out), NULL);
+ g_signal_connect (tito_dialog, "focus-out-event", G_CALLBACK (on_focus_out), preferences_button);
gtk_widget_show (tito_dialog);
return TRUE;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]