1
0
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:
chylex 2016-04-13 11:11:53 +02:00
parent 81c29ab50c
commit cf450447e5

View File

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