Skip to content

Commit e2a8d97

Browse files
committed
rename grid → box
1 parent 7f35439 commit e2a8d97

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/EventEdition/ReminderPanel.vala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -194,16 +194,16 @@ public class Maya.View.EventEdition.ReminderGrid : Gtk.ListBoxRow {
194194
};
195195
remove_button.get_style_context ().add_class (Gtk.STYLE_CLASS_DESTRUCTIVE_ACTION);
196196

197-
var grid = new Gtk.Box (HORIZONTAL, 6) {
197+
var box = new Gtk.Box (HORIZONTAL, 6) {
198198
margin_top = 6,
199199
margin_end = 6,
200200
margin_bottom = 6,
201201
margin_start = 6
202202
};
203-
grid.add (time);
204-
grid.add (remove_button);
203+
box.add (time);
204+
box.add (remove_button);
205205

206-
child = grid;
206+
child = box;
207207

208208
remove_button.clicked.connect (() => {
209209
removed ();

0 commit comments

Comments
 (0)