Electron-249 - Fixed new line issue in setting plugin

This commit is contained in:
Kiran Niranjan 2018-01-05 23:40:32 +05:30 committed by kiranniranjan
parent cb324c17dd
commit 92076ce9c7
2 changed files with 2 additions and 2 deletions

View File

@ -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