mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-05-08 02:34:06 +02:00
Fix support for old config files
This commit is contained in:
parent
81c29ab50c
commit
cf450447e5
@ -26,13 +26,13 @@ sealed class UserConfig{
|
||||
|
||||
public bool IsCustomWindowLocationSet{
|
||||
get{
|
||||
return WindowLocation.X != -32000;
|
||||
return WindowLocation.X != -32000 && WindowLocation.X != 32000;
|
||||
}
|
||||
}
|
||||
|
||||
public bool IsCustomNotificationPositionSet{
|
||||
get{
|
||||
return CustomNotificationPosition.X != -32000;
|
||||
return CustomNotificationPosition.X != -32000 && CustomNotificationPosition.X != 32000;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user