From 9354ef67ae6e6c17587ab1acf3ac85308aafeeff Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Tue, 19 Feb 2013 10:57:18 +0000 Subject: [PATCH] Set aspect width & height on the same line (pedantic commit just to remove 2 extra lines). Signed-off-by: Christopher Michael SVN revision: 84161 --- src/modules/conf_randr/e_smart_monitor.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/modules/conf_randr/e_smart_monitor.c b/src/modules/conf_randr/e_smart_monitor.c index 3e932a2ae..432ffbbfd 100644 --- a/src/modules/conf_randr/e_smart_monitor.c +++ b/src/modules/conf_randr/e_smart_monitor.c @@ -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;