Backport: 9354ef6 :: Set aspect width & height on the same line

(pedantic commit just to remove 2 extra lines).

Signed-off-by: Christopher Michael <cp.michael@samsung.com>

SVN revision: 84161
Signed-off-by: Deon Thomas <PrinceAMD.Elive@gmail.com>
This commit is contained in:
Christopher Michael 2013-02-19 10:57:18 +00:00 committed by Deon Thomas
parent 684b8bf06b
commit 733f98fbbf
1 changed files with 2 additions and 4 deletions

View File

@ -155,10 +155,8 @@ e_smart_monitor_output_set(Evas_Object *obj, Ecore_X_Randr_Output output)
/* get the largest mode */
mode = eina_list_last_data_get(sd->modes);
mw = mode->width;
mh = mode->height;
aw = mw;
ah = mh;
aw = mw = mode->width;
ah = mh = mode->height;
sd->max.mode_width = mw;
sd->max.mode_height = mh;