mirror of
https://github.com/debauchee/barrier.git
synced 2025-07-17 16:37:43 +02:00
fixed: ignore --enable-drag-drop includes os major 6 (vista family)
This commit is contained in:
parent
443e0cbc72
commit
b0a02fc94b
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ CApp::parseArg(const int& argc, const char* const* argv, int& i)
|
|||
osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
|
||||
GetVersionEx(&osvi);
|
||||
|
||||
if (osvi.dwMajorVersion <= 6) {
|
||||
if (osvi.dwMajorVersion < 6) {
|
||||
useDragDrop = false;
|
||||
LOG((CLOG_INFO "ignoring --enable-drag-drop, not supported below vista."));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue