[Xfce4-commits] <postler:master> Only hide unread label when setting up welcome screen

Christian Dywan noreply at xfce.org
Fri Jul 8 20:56:02 CEST 2011


Updating branch refs/heads/master
         to a36a9df5ab8e0b440b914ee6f1836fbb8210dcdc (commit)
       from 3ca0f531e41a3e6c23e639b843fd61a890461516 (commit)

commit a36a9df5ab8e0b440b914ee6f1836fbb8210dcdc
Author: Christian Dywan <christian at twotoasts.de>
Date:   Fri Jul 8 20:51:52 2011 +0200

    Only hide unread label when setting up welcome screen
    
    We don't want to hide it by default obviously.

 postler/postler-bureau.vala |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/postler/postler-bureau.vala b/postler/postler-bureau.vala
index 65b15c0..1837d9b 100644
--- a/postler/postler-bureau.vala
+++ b/postler/postler-bureau.vala
@@ -762,7 +762,6 @@ public class Postler.Bureau : Gtk.Window {
         var eventbox = new Gtk.EventBox ();
         eventbox.add (messages_label);
         eventbox.modify_bg (Gtk.StateType.NORMAL, messages.style.base[Gtk.StateType.NORMAL]);
-        eventbox.set_no_show_all (true);
         messages_box.pack_end (eventbox, false, false, 0);
 
         /* Welcome the new user with an account form embedded in the window */
@@ -792,6 +791,7 @@ public class Postler.Bureau : Gtk.Window {
             welcome.address.grab_focus ();
             folders.set_no_show_all (true);
             messages.parent.set_no_show_all (true);
+            messages_label.parent.set_no_show_all (true);
             var continue_box = new Gtk.HButtonBox ();
             continue_box.set_border_width (16);
             continue_box.layout_style = Gtk.ButtonBoxStyle.END;



More information about the Xfce4-commits mailing list