[Xfce4-commits] [apps/ristretto] 01/01: Fix 'Status bar appears upon leaving fullscreen'

noreply at xfce.org noreply at xfce.org
Tue Sep 3 16:37:31 CEST 2019


This is an automated email from the git hooks/post-receive script.

f   2   4   0   4       p   u   s   h   e   d       a       c   o   m   m   i   t       t   o       b   r   a   n   c   h       m   a   s   t   e   r   
   in repository apps/ristretto.

commit afeb187c6cc92701c01dbd583bd78b6435d27cfa
Author: Igor <f2404 at yandex.ru>
Date:   Tue Sep 3 10:35:54 2019 -0400

    Fix 'Status bar appears upon leaving fullscreen'
    
    Regardless of the "Show Status Bar" setting.
    
    Fixes bug #15921
---
 src/main_window.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/main_window.c b/src/main_window.c
index d76c69d..4cef356 100644
--- a/src/main_window.c
+++ b/src/main_window.c
@@ -2511,7 +2511,10 @@ G_GNUC_END_IGNORE_DEPRECATIONS
             }
 
             gtk_widget_show (window->priv->menubar);
-            gtk_widget_show (window->priv->statusbar);
+            if (rstto_settings_get_boolean_property (RSTTO_SETTINGS (window->priv->settings_manager), "show-statusbar"))
+            {
+                gtk_widget_show (window->priv->statusbar);
+            }
 
             if (rstto_settings_get_boolean_property (window->priv->settings_manager, "show-thumbnailbar"))
             {

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list