From c751489d8cb551e10186c431b4a4cccd811b29c5 Mon Sep 17 00:00:00 2001 From: Dave Andreoli Date: Sun, 18 Feb 2018 16:32:44 +0100 Subject: [PATCH] Workaround sizing of the gadgets info popup This was used to work but now the popup is no more sized correctly. (read: something break somewhere, and is brobably not going to be fixed) The fix is not ideal (the popup should not be resizible) but at least now it show something. --- src/e_mod_edgar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/e_mod_edgar.c b/src/e_mod_edgar.c index 64470a8..5a47525 100644 --- a/src/e_mod_edgar.c +++ b/src/e_mod_edgar.c @@ -490,7 +490,7 @@ edgar_menu_info_cb(void *data, E_Menu *m, E_Menu_Item *mi) dia = e_dialog_new(con, "gadget_info", "class"); #endif - e_dialog_resizable_set(dia, 0); + e_dialog_resizable_set(dia, 1); e_dialog_title_set(dia, "Gadget info"); e_dialog_button_add(dia, "Close", NULL, NULL, NULL);