We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc273e4 commit 9638d57Copy full SHA for 9638d57
src/host.rs
@@ -7,9 +7,12 @@ use winit::event_loop::EventLoopProxy;
7
8
use crate::app::AppMessage;
9
10
+#[cfg(debug_assertions)]
11
+const APP_REG_KEY: &str = "SOFTWARE\\amrbashir\\komorebi-switcher-debug";
12
+#[cfg(not(debug_assertions))]
13
const APP_REG_KEY: &str = "SOFTWARE\\amrbashir\\komorebi-switcher";
-const WINDOW_POS_X_KEY: &str = "window-pos-x";
14
15
+const WINDOW_POS_X_KEY: &str = "window-pos-x";
16
const WINDOW_POS_Y_KEY: &str = "window-pos-y";
17
18
struct WndProcUserData {
0 commit comments