mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-02-25 18:55:29 -06:00
Electron-249 - Fixed new line issue in setting plugin
This commit is contained in:
parent
cb324c17dd
commit
92076ce9c7
Binary file not shown.
@ -64,12 +64,12 @@
|
||||
}
|
||||
|
||||
// By default, set alwaysOnTop and bring to front to false
|
||||
NSString *alwaysOnTop = @"false\n";
|
||||
NSString *alwaysOnTop = @"false";
|
||||
NSString *bringToFront = @"false\n";
|
||||
|
||||
// If the checkbox is changed, set the always on top value accordingly
|
||||
if ([_alwaysOnTopCheckBox state] == 1) {
|
||||
alwaysOnTop = @"true\n";
|
||||
alwaysOnTop = @"true";
|
||||
}
|
||||
|
||||
// If the checkbox is changed, set the bring to front value accordingly
|
||||
|
Loading…
Reference in New Issue
Block a user