From: Olaf Wintermann Date: Wed, 22 Oct 2025 18:22:09 +0000 (+0200) Subject: add missing hfill to the note_title textfield X-Git-Url: https://uap-core.de/gitweb/?a=commitdiff_plain;h=aee93644eac98e156442c46573c0b417cab91a4d;p=note.git add missing hfill to the note_title textfield --- diff --git a/.gitignore b/.gitignore index a8bfba4..6a50135 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,5 @@ make/vs/**vcxproj.user make/vs/vcpkg_installed ui/winui/winui.vcxproj.user ui/winui/Generated Files +gmon.out + diff --git a/application/window.c b/application/window.c index 98a9642..108fcb9 100644 --- a/application/window.c +++ b/application/window.c @@ -85,7 +85,7 @@ void window_create() { ui_vbox(obj, .fill = TRUE) { ui_grid(obj, .margin = 10, .columnspacing = 10, .rowspacing = 10, .def_vfill = TRUE) { //ui_label(obj, .label = "Title", .vfill = TRUE); - ui_textfield(obj, .varname = "note_title", .onchange = action_note_title_changed, .hexpand = TRUE, .groups = UI_GROUPS(APP_STATE_NOTE_SELECTED)); + ui_textfield(obj, .varname = "note_title", .onchange = action_note_title_changed, .hexpand = TRUE, .hfill = TRUE, .groups = UI_GROUPS(APP_STATE_NOTE_SELECTED)); ui_newline(obj); } ui_hbox(obj, .style_class = "note_toolbar", .margin = 10, .spacing = 4) {