From: Olaf Wintermann Date: Fri, 23 May 2025 18:23:59 +0000 (+0200) Subject: change groups dropdown menu hfill setting in the New Notebook dialog X-Git-Url: https://uap-core.de/gitweb/?a=commitdiff_plain;h=b27c75f42f4073cbb53bdaf6985a5be2da13949b;p=note.git change groups dropdown menu hfill setting in the New Notebook dialog --- diff --git a/application/window.c b/application/window.c index 5f901c2..b834d8b 100644 --- a/application/window.c +++ b/application/window.c @@ -337,8 +337,8 @@ void action_notebook_add(UiEvent *event, void *userdata) { // Dialog UI ui_grid(obj, .margin = 10, .columnspacing = 10, .rowspacing = 10, .def_vfill = TRUE, .fill = UI_ON) { - UIWIDGET gs_label = ui_rlabel(obj, .label = "Group"); - UIWIDGET gs_list = ui_combobox(obj, .list = wdata->groups, .getvalue = nnd_group_value); + ui_rlabel(obj, .label = "Group"); + ui_combobox(obj, .list = wdata->groups, .getvalue = nnd_group_value, .hfill = TRUE, .hexpand = TRUE); ui_newline(obj); ui_newline(obj);