netstar pushed a commit to branch master.

http://git.enlightenment.org/apps/evisum.git/commit/?id=f201489b3750ea7b3b2bf90a98bd105df0343396

commit f201489b3750ea7b3b2bf90a98bd105df0343396
Author: Alastair Poole <[email protected]>
Date:   Sat Feb 15 17:36:33 2020 +0000

    ui: Fix bug
    
    Thanks jf_simon
---
 src/bin/ui.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/ui.c b/src/bin/ui.c
index 6651e23..9896b16 100644
--- a/src/bin/ui.c
+++ b/src/bin/ui.c
@@ -644,7 +644,7 @@ _entry_cmd_size_set(Ui *ui)
    evas_object_geometry_get(ui->btn_cmd, NULL, NULL, NULL, &h);
    evas_object_geometry_get(ui->entry_cmd, NULL, NULL, &w, &oh);
 
-   if ((!minw && !minh) || (w > minw))
+   if (!minw && !minh)
      {
         minw = w; minh = h;
         evas_object_size_hint_min_set(ui->entry_cmd, minw, oh);

-- 


Reply via email to