diff options
author | Carlos Soriano <csoriano@gnome.org> | 2015-12-14 11:51:16 +0100 |
---|---|---|
committer | Carlos Soriano <csoriano@gnome.org> | 2015-12-14 12:40:58 +0100 |
commit | 5ce09ad04b94c4f1652afaa96852437ec40fc934 (patch) | |
tree | a9eec1c67d1c9f2c8c3bdc36ce1ce64f9d5bb114 /src/nautilus-toolbar.c | |
parent | 2785201fe9079281f4529d51e59da08ecff2ce89 (diff) | |
download | nautilus-5ce09ad04b94c4f1652afaa96852437ec40fc934.tar.gz |
toolbar: show operations popover at start
It was not noticeable enough when a operation started.
For 3.18 we don't have much more room to experiment ways to
increase it, so go for the easier solution and show the popover
when a operation starts.
https://bugzilla.gnome.org/show_bug.cgi?id=753728
Diffstat (limited to 'src/nautilus-toolbar.c')
-rw-r--r-- | src/nautilus-toolbar.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nautilus-toolbar.c b/src/nautilus-toolbar.c index 6e2a74afe..aa4e7dc28 100644 --- a/src/nautilus-toolbar.c +++ b/src/nautilus-toolbar.c @@ -608,6 +608,10 @@ update_operations (NautilusToolbar *self) gtk_revealer_set_reveal_child (GTK_REVEALER (self->priv->operations_revealer), TRUE); gtk_widget_queue_draw (self->priv->operations_icon); + + /* Show the popover at start to increase visibility */ + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (self->priv->operations_button), + TRUE); } } |