blob: 71d2c03ef6eb0ef3efd602e82344da1feaab03b4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
namespace cru::ui::debug_flags {
constexpr bool routed_event = false;
constexpr bool layout = false;
constexpr bool shortcut = false;
constexpr bool text_service = false;
constexpr int click_detector = 0;
constexpr int draw = 0;
} // namespace cru::ui::debug_flags
|