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

f2404 pushed a 
commit to branch 
master
in repository apps/ristretto.

commit afeb187c6cc92701c01dbd583bd78b6435d27cfa
Author: Igor <f2...@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.
_______________________________________________
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits

Reply via email to