diff options
author | Yuqian Yang <crupest@outlook.com> | 2018-10-06 15:51:36 +0000 |
---|---|---|
committer | Yuqian Yang <crupest@outlook.com> | 2018-10-06 15:51:36 +0000 |
commit | b0057dc911f96258c7280b89c8f4da828ecc283c (patch) | |
tree | ccdc237b84423c9564458df3fae036f08815dda6 /src/ui/window.h | |
parent | 7e870dd16e2f5b41fa6c6f687723aaa50c16274d (diff) | |
parent | 2261a4bc348a6017a0f31233f969bdf31ae35679 (diff) | |
download | cru-b0057dc911f96258c7280b89c8f4da828ecc283c.tar.gz cru-b0057dc911f96258c7280b89c8f4da828ecc283c.tar.bz2 cru-b0057dc911f96258c7280b89c8f4da828ecc283c.zip |
Merge branch '13-debug-layout' into 'master'
Resolve "Add debug layout visual effect."
Closes #13
See merge request crupest/CruUI!13
Diffstat (limited to 'src/ui/window.h')
-rw-r--r-- | src/ui/window.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ui/window.h b/src/ui/window.h index b4433e85..e4e89776 100644 --- a/src/ui/window.h +++ b/src/ui/window.h @@ -184,13 +184,13 @@ namespace cru { Control* ReleaseCurrentMouseCapture(); //*************** region: debug *************** -#ifdef CRU_DEBUG_DRAW_CONTROL_BORDER - bool GetDebugDrawControlBorder() const +#ifdef CRU_DEBUG_LAYOUT + bool IsDebugLayout() const { - return debug_draw_control_border_; + return debug_layout_; } - void SetDebugDrawControlBorder(bool value); + void SetDebugLayout(bool value); #endif public: @@ -276,8 +276,8 @@ namespace cru { Control* mouse_capture_control_ = nullptr; -#ifdef CRU_DEBUG_DRAW_CONTROL_BORDER - bool debug_draw_control_border_ = false; +#ifdef CRU_DEBUG_LAYOUT + bool debug_layout_ = false; #endif }; } |