Add debug logs for window position and autoupdate.

This commit is contained in:
John Preston
2017-07-03 15:23:41 +03:00
parent ebb10fb8ed
commit f316e3bd17
7 changed files with 71 additions and 39 deletions

View File

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