fix entry dialog text sizing
authorMike Blumenkrantz <michael.blumenkrantz@gmail.com>
Tue, 18 Sep 2012 07:45:25 +0000 (07:45 +0000)
committerMike Blumenkrantz <michael.blumenkrantz@gmail.com>
Tue, 18 Sep 2012 07:45:25 +0000 (07:45 +0000)
SVN revision: 76784

src/bin/e_entry_dialog.c

index 64632a7..cc8769f 100644 (file)
@@ -58,7 +58,7 @@ e_entry_dialog_show(const char *title, const char *icon, const char *text,
    evas_object_smart_callback_add(ed->entry, "key_down", _e_entry_cb_key_down, ed);
    e_widget_list_object_append(o, ed->entry, 1, 1, 0.5);
    e_widget_size_min_get(o, &w, &h);
-   e_dialog_content_set(dia, o, w, h);
+   e_dialog_content_set(dia, o, 2 * w, h);
 
    e_dialog_button_add(dia, !button_text ? _("OK") : button_text, NULL, _e_entry_dialog_ok, ed);
    e_dialog_button_add(dia, !button2_text ? _("Cancel") : button2_text, NULL, _e_entry_dialog_cancel, ed);