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 7f35439 commit e2a8d97Copy full SHA for e2a8d97
1 file changed
src/EventEdition/ReminderPanel.vala
@@ -194,16 +194,16 @@ public class Maya.View.EventEdition.ReminderGrid : Gtk.ListBoxRow {
194
};
195
remove_button.get_style_context ().add_class (Gtk.STYLE_CLASS_DESTRUCTIVE_ACTION);
196
197
- var grid = new Gtk.Box (HORIZONTAL, 6) {
+ var box = new Gtk.Box (HORIZONTAL, 6) {
198
margin_top = 6,
199
margin_end = 6,
200
margin_bottom = 6,
201
margin_start = 6
202
203
- grid.add (time);
204
- grid.add (remove_button);
+ box.add (time);
+ box.add (remove_button);
205
206
- child = grid;
+ child = box;
207
208
remove_button.clicked.connect (() => {
209
removed ();
0 commit comments