Not sure why this didn't get committed as well.

This commit is contained in:
Jaime Thomas 2009-02-21 03:19:29 +00:00
parent aa0cbe616f
commit b9845aad0a
1 changed files with 5 additions and 2 deletions

View File

@ -55,8 +55,11 @@ ecdb_about_show(void)
edje_object_size_min_get(gui, &mw, &mh);
if (mw <= 0) mw = 350;
if (mh <= 0) mh = 350;
mw = (int)((float)mw * em->scalef);
mh = (int)((float)mh * em->scalef);
if (ecore_config_boolean_get("use_scale"))
{
mw = (int)((float)mw * em->scalef);
mh = (int)((float)mh * em->scalef);
}
ecore_evas_resize(win, mw, mh);
ecore_evas_size_min_set(win, mw, mh);
edje_object_size_max_get(gui, &mw, &mh);