re-enabled force-WS option, but changed default to being true. Also modified default setting for program panel to being false since this may provide a higher chance for a working panel outthere. If people experience trouble please let me know.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25899 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Rudolf Cornelissen
2008-06-10 10:38:50 +00:00
parent 344b81452e
commit 109f1e1cb8
@@ -217,19 +217,15 @@ PROPOSE_DISPLAY_MODE(display_mode *target, const display_mode *low, const displa
} }
break; break;
default: default:
#if 0
/* at least one analog monitor is connected, or nothing detected at all */ /* at least one analog monitor is connected, or nothing detected at all */
/* (if forcing widescreen type was requested don't block mode) */ /* (if forcing widescreen type was requested don't block mode) */
if (target_aspect > 1.34 && !si->settings.force_ws) { if (target_aspect > 1.34 && !si->settings.force_ws) {
LOG(4, ("PROPOSEMODE: not all output devices can display widescreen modes, aborted.\n")); LOG(4, ("PROPOSEMODE: not all output devices can display widescreen modes, aborted.\n"));
return B_ERROR; return B_ERROR;
} }
#endif
break; break;
} }
// Wide screen modes are pretty common these days... - better use EDID!
#if 0
/* only export widescreen panel-TV modes when an exact resolution match exists, /* only export widescreen panel-TV modes when an exact resolution match exists,
* to prevent the modelist from becoming too crowded */ * to prevent the modelist from becoming too crowded */
if (target_aspect > 1.61 && !si->settings.force_ws) { if (target_aspect > 1.61 && !si->settings.force_ws) {
@@ -250,7 +246,6 @@ PROPOSE_DISPLAY_MODE(display_mode *target, const display_mode *low, const displa
return B_ERROR; return B_ERROR;
} }
} }
#endif
} }
/* check if panel(s) can display the requested resolution (if connected) */ /* check if panel(s) can display the requested resolution (if connected) */