[gnome-calendar/gnome-3-28] event-widget : hide hour label on full day event



commit e0a397de2742f735accaff36c49798289eae37af
Author: Abdullahi Usman <abdullahismn7 gmail com>
Date:   Sun Mar 25 01:50:32 2018 +0100

    event-widget : hide hour label on full day event
    
    All events in month-popover displays hour-label indicating their start time,
    but all-day events should not display their start time.
    
    This is caused by gtk_widget_show_all recursively setting the events list-box
    and all its childrens visible.
    
    We replace gtk_widget_show_all with gtk_widget_show to show the events list-box
    and its childrens.
    
    https://gitlab.gnome.org/GNOME/gnome-calendar/issues/250
    
    
    (cherry picked from commit c7f522eaddca0a1279e9f63132f44b56525a29c5)

 data/ui/event-widget.ui | 1 +
 1 file changed, 1 insertion(+)
---
diff --git a/data/ui/event-widget.ui b/data/ui/event-widget.ui
index e75345c9..53a6f04a 100644
--- a/data/ui/event-widget.ui
+++ b/data/ui/event-widget.ui
@@ -52,6 +52,7 @@
               <object class="GtkLabel" id="hour_label">
                 <property name="visible">True</property>
                 <property name="can_focus">False</property>
+                <property name="no-show-all">True</property>
                 <style>
                   <class name="dim-label" />
                 </style>


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]