Skip to content

Commit 5692f7c

Browse files
committed
minimize to taskbar on start by default
1 parent c587c5e commit 5692f7c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ namespace ImGui
5454
using namespace std::chrono_literals;
5555
using namespace vr;
5656

57-
static constexpr const char *version = "v1.3.0";
57+
static constexpr const char *version = "v1.3.1";
5858

5959
static constexpr const char *iconPath = "icon.png";
6060

@@ -76,7 +76,7 @@ bool trayQuit = false;
7676
#pragma region Default settings
7777
// Initialization
7878
bool autoStart = true;
79-
int minimizeOnStart = 0;
79+
int minimizeOnStart = 1;
8080
// General
8181
bool closeToTray = false;
8282
bool externalResChangeCompatibility = true;
@@ -89,7 +89,7 @@ std::set<std::string> whitelistAppsSet = {};
8989
int resChangeDelayMs = 6000;
9090
int initialRes = 100;
9191
int minRes = 70;
92-
int maxRes = 200;
92+
int maxRes = 190;
9393
float resIncreaseThreshold = 79;
9494
float resDecreaseThreshold = 89;
9595
int resIncreaseMin = 2;

0 commit comments

Comments
 (0)