summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2014-12-10 22:47:16 -0500
committerMatthias Clasen <mclasen@redhat.com>2014-12-10 22:47:16 -0500
commit23c5f1139109f2385ad2e393de59375c3ed7ca16 (patch)
treed05e2c62cb4f3bb9be8d4efb959977dd0a3707a8
parentc5b7f9f11c4e23cc6717500127a475ff591a1197 (diff)
downloadgtk+-23c5f1139109f2385ad2e393de59375c3ed7ca16.tar.gz
inspector: Make header buttons as !focus-on-click
Moving the focus to the header bar is unexpected and disruptive, so don't do it.
-rw-r--r--gtk/inspector/window.c1
-rw-r--r--gtk/inspector/window.ui6
2 files changed, 7 insertions, 0 deletions
diff --git a/gtk/inspector/window.c b/gtk/inspector/window.c
index ceba1fae57..1e7223b89e 100644
--- a/gtk/inspector/window.c
+++ b/gtk/inspector/window.c
@@ -173,6 +173,7 @@ gtk_inspector_window_init (GtkInspectorWindow *iw)
{
button = gtk_button_new_from_icon_name ("find-location-symbolic",
GTK_ICON_SIZE_MENU);
+ gtk_button_set_focus_on_click (GTK_BUTTON (button), FALSE);
gtk_widget_set_halign (button, GTK_ALIGN_START);
gtk_widget_set_valign (button, GTK_ALIGN_CENTER);
g_signal_connect (button, "clicked",
diff --git a/gtk/inspector/window.ui b/gtk/inspector/window.ui
index 1cd1d8d3d5..366d1791a5 100644
--- a/gtk/inspector/window.ui
+++ b/gtk/inspector/window.ui
@@ -20,6 +20,7 @@
<child>
<object class="GtkButton" id="select_object">
<property name="visible">True</property>
+ <property name="focus-on-click">False</property>
<property name="tooltip-text" translatable="yes">Select an Object</property>
<property name="halign">center</property>
<property name="valign">center</property>
@@ -42,6 +43,7 @@
<child>
<object class="GtkButton" id="object_details_button">
<property name="visible">True</property>
+ <property name="focus-on-click">False</property>
<property name="tooltip-text" translatable="yes">Show Details</property>
<property name="halign">center</property>
<property name="valign">center</property>
@@ -64,6 +66,7 @@
<child>
<object class="GtkButton">
<property name="visible">True</property>
+ <property name="focus-on-click">False</property>
<property name="tooltip-text" translatable="yes">Show all Objects</property>
<property name="halign">center</property>
<property name="valign">center</property>
@@ -93,6 +96,7 @@
<child>
<object class="GtkToggleButton" id="record_statistics_button">
<property name="visible">True</property>
+ <property name="focus-on-click">False</property>
<property name="tooltip-text" translatable="yes">Collect Statistics</property>
<property name="halign">start</property>
<property name="valign">center</property>
@@ -119,6 +123,7 @@
<child>
<object class="GtkButton">
<property name="visible">True</property>
+ <property name="focus-on-click">False</property>
<property name="tooltip-text" translatable="yes">Show Details</property>
<property name="halign">center</property>
<property name="valign">center</property>
@@ -140,6 +145,7 @@
<child>
<object class="GtkButton">
<property name="visible">True</property>
+ <property name="focus-on-click">False</property>
<property name="tooltip-text" translatable="yes">Show all Resources</property>
<property name="halign">center</property>
<property name="valign">center</property>