We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6769bd2 commit 46d02a2Copy full SHA for 46d02a2
1 file changed
src/Indicator.vala
@@ -85,9 +85,9 @@ public class DateTime.Indicator : Wingpanel.Indicator {
85
component_listbox.set_sort_func (sort_function);
86
87
var scrolled_window = new Gtk.ScrolledWindow (null, null) {
88
- hscrollbar_policy = Gtk.PolicyType.NEVER
+ hscrollbar_policy = Gtk.PolicyType.NEVER,
89
+ child = component_listbox
90
};
- scrolled_window.add (component_listbox);
91
92
var settings_button = new Gtk.ModelButton () {
93
text = _("Date & Time Settings…")
@@ -135,8 +135,7 @@ public class DateTime.Indicator : Wingpanel.Indicator {
135
"dialog-error"
136
);
137
dialog.show_error_details (e.message);
138
- dialog.run ();
139
- dialog.destroy ();
+ dialog.present ();
140
}
141
close ();
142
0 commit comments