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:
parent
81c29ab50c
commit
cf450447e5
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user