Browse Source

Disable receiving if running as windows app by default

Scott Brogden 9 years ago
parent
commit
eb3a3613db
1 changed files with 3 additions and 0 deletions
  1. 3 0
      Options.cpp

+ 3 - 0
Options.cpp

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