Add debug logs for window position and autoupdate.
This commit is contained in:
@@ -91,10 +91,14 @@ DeclareSetting(bool, CtrlEnter);
|
||||
DeclareSetting(bool, AutoUpdate);
|
||||
|
||||
struct TWindowPos {
|
||||
TWindowPos() : moncrc(0), maximized(0), x(0), y(0), w(0), h(0) {
|
||||
}
|
||||
int32 moncrc, maximized;
|
||||
int32 x, y, w, h;
|
||||
TWindowPos() = default;
|
||||
|
||||
int32 moncrc = 0;
|
||||
int maximized = 0;
|
||||
int x = 0;
|
||||
int y = 0;
|
||||
int w = 0;
|
||||
int h = 0;
|
||||
};
|
||||
DeclareSetting(TWindowPos, WindowPos);
|
||||
DeclareSetting(bool, SupportTray);
|
||||
|
||||
Reference in New Issue
Block a user