@bobfrankston/msger 0.1.60 → 0.1.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/msger-native/src/main.rs
CHANGED
|
@@ -174,7 +174,10 @@ fn main() {
|
|
|
174
174
|
|
|
175
175
|
// Calculate position with optional screen offset (Windows only)
|
|
176
176
|
let final_position = if let Some(ref pos) = options.pos {
|
|
177
|
+
#[cfg(target_os = "windows")]
|
|
177
178
|
let mut x = pos.x;
|
|
179
|
+
#[cfg(not(target_os = "windows"))]
|
|
180
|
+
let x = pos.x;
|
|
178
181
|
let y = pos.y;
|
|
179
182
|
|
|
180
183
|
// On Windows, calculate screen offset if screen number provided
|
package/msgernative-linux-x64
CHANGED
|
Binary file
|
|
Binary file
|