瀏覽代碼

Disable receiving if running as windows app by default

Scott Brogden 9 年之前
父節點
當前提交
eb3a3613db
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      Options.cpp

+ 3 - 0
Options.cpp

@@ -1254,6 +1254,9 @@ BOOL CGetSetOptions::GetDisableRecieve()
 	if(GetIsPortableDitto())
 		bDefault = TRUE;
 
+	if(GetIsWindowsApp())
+		bDefault = TRUE;
+
 	return GetProfileLong("DisableRecieve", bDefault);
 }