# HG changeset patch # User Olaf Wintermann # Date 1759582465 -7200 # Node ID 81c4f73236a4699d932fe320bddc9c192e81c599 # Parent c00e968d018bf883faef3abf488a38ae0b5c1288 fix missing textarea fill property in the resoureviewer window diff -r c00e968d018b -r 81c4f73236a4 application/window.c --- a/application/window.c Sat Oct 04 14:52:59 2025 +0200 +++ b/application/window.c Sat Oct 04 14:54:25 2025 +0200 @@ -213,7 +213,7 @@ ui_tabview(win, .fill = TRUE) { if(type == DAV_RESOURCE_VIEW_TEXT) { ui_tab(win, "Content") { - ui_textarea(win, .varname = "text", .onchange = action_resourceviewer_text_modified); + ui_textarea(win, .varname = "text", .onchange = action_resourceviewer_text_modified, .fill = TRUE); } } else if(type == DAV_RESOURCE_VIEW_IMAGE) { ui_tab(win, "Preview") {