Backport: dce3e8f7 :: Skip refresh rate checks during resize.

Some people have reported that resizing is difficult, or that they
could not get to the max resolution of their monitor(s). Skipping the
refresh rate check during resolution finding fixes that ... With a big
fat Gotcha !!! because now after changing resolutions, the refresh
rate May not match what was previously selected....

So, as a word of CAUTION: After you set a resolution you should now
Verify your Refresh Rate before Applying, else you may be getting an
undesirable rate :/

Signed-off-by: Christopher Michael <cp.michael@samsung.com>
Signed-off-by: Deon Thomas <PrinceAMD.Elive@gmail.com>
This commit is contained in:
Christopher Michael 2013-02-26 11:06:01 +00:00 committed by Deon Thomas
parent ba1c77fde0
commit fb124fe454
1 changed files with 2 additions and 2 deletions

View File

@ -2054,10 +2054,10 @@ _e_smart_monitor_resize_event(E_Smart_Data *sd, Evas_Object *mon, void *event)
if ((sd->current.orient == ECORE_X_RANDR_ORIENTATION_ROT_0) ||
(sd->current.orient == ECORE_X_RANDR_ORIENTATION_ROT_180))
mode = _e_smart_monitor_mode_find(sd, sd->current.w,
sd->current.h, EINA_FALSE);
sd->current.h, EINA_TRUE);
else
mode = _e_smart_monitor_mode_find(sd, sd->current.h,
sd->current.w, EINA_FALSE);
sd->current.w, EINA_TRUE);
if (mode)
{