diff options
author | Matthias Clasen <mclasen@redhat.com> | 2014-07-10 10:10:11 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2014-07-10 10:12:02 -0400 |
commit | 34245515e532017653b5b84132654734b4d977de (patch) | |
tree | 081de46063d2d833c4bf2af8cf32b19029a3a257 /gtk/gtkdebug.h | |
parent | 562a942f9964e95d036e0e148301d3c7e81f3095 (diff) | |
download | gtk+-34245515e532017653b5b84132654734b4d977de.tar.gz |
Add a 'touchscreen' debug flag
This has the same effect as the GTK_TEST_TOUCHSCREEN environment
variable, but can be toggled at runtime.
Diffstat (limited to 'gtk/gtkdebug.h')
-rw-r--r-- | gtk/gtkdebug.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/gtkdebug.h b/gtk/gtkdebug.h index 895520eba6..8b1d2cb269 100644 --- a/gtk/gtkdebug.h +++ b/gtk/gtkdebug.h @@ -52,7 +52,8 @@ typedef enum { GTK_DEBUG_BASELINES = 1 << 14, GTK_DEBUG_PIXEL_CACHE = 1 << 15, GTK_DEBUG_NO_PIXEL_CACHE = 1 << 16, - GTK_DEBUG_INTERACTIVE = 1 << 17 + GTK_DEBUG_INTERACTIVE = 1 << 17, + GTK_DEBUG_TOUCHSCREEN = 1 << 18 } GtkDebugFlag; #ifdef G_ENABLE_DEBUG |