diff options
author | Christopher Michael <cp.michael@samsung.com> | 2013-02-26 11:06:01 +0000 |
---|---|---|
committer | Christopher Michael <cp.michael@samsung.com> | 2013-02-26 11:09:45 +0000 |
commit | dce3e8f74f721e25623cc9d56b1faf69c0a7fa30 (patch) | |
tree | ca0516a6f14c71462aa098c207b748b874f509f9 /src/modules/conf_randr | |
parent | 1f34e88860071c26b72ec20aeb70bfbc3c01e6c5 (diff) | |
download | enlightenment-dce3e8f74f721e25623cc9d56b1faf69c0a7fa30.tar.gz |
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>
Diffstat (limited to 'src/modules/conf_randr')
-rw-r--r-- | src/modules/conf_randr/e_smart_monitor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/conf_randr/e_smart_monitor.c b/src/modules/conf_randr/e_smart_monitor.c index 8630c4b638..d3814fe174 100644 --- a/src/modules/conf_randr/e_smart_monitor.c +++ b/src/modules/conf_randr/e_smart_monitor.c @@ -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) { |