1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-06-10 20:34:07 +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{ public bool IsCustomWindowLocationSet{
get{ get{
return WindowLocation.X != -32000; return WindowLocation.X != -32000 && WindowLocation.X != 32000;
} }
} }
public bool IsCustomNotificationPositionSet{ public bool IsCustomNotificationPositionSet{
get{ get{
return CustomNotificationPosition.X != -32000; return CustomNotificationPosition.X != -32000 && CustomNotificationPosition.X != 32000;
} }
} }