diff options
author | Ryan Lortie <desrt@desrt.ca> | 2014-07-30 12:00:55 +0200 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2014-08-03 00:18:44 +0200 |
commit | 16e02850c10d2edc71ceccac32ce62211a89be60 (patch) | |
tree | 54bcba7b4bb059da7d721afde8fd97f506b4444a /gtk/gtkdebug.h | |
parent | 785c9f5e2c6a84425745c254c73a2c596a94b312 (diff) | |
download | gtk+-16e02850c10d2edc71ceccac32ce62211a89be60.tar.gz |
GtkActionHelper: add some debugging output
Introduce a new debug category "actions" and write some messages from
GtkActionHelper about if we can find the actions or not.
We will probably soon want to add some similar messages to
GtkMenuTrackerItem.
https://bugzilla.gnome.org/show_bug.cgi?id=733965
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 8b1d2cb269..e7ae8ae8b2 100644 --- a/gtk/gtkdebug.h +++ b/gtk/gtkdebug.h @@ -53,7 +53,8 @@ typedef enum { GTK_DEBUG_PIXEL_CACHE = 1 << 15, GTK_DEBUG_NO_PIXEL_CACHE = 1 << 16, GTK_DEBUG_INTERACTIVE = 1 << 17, - GTK_DEBUG_TOUCHSCREEN = 1 << 18 + GTK_DEBUG_TOUCHSCREEN = 1 << 18, + GTK_DEBUG_ACTIONS = 1 << 19 } GtkDebugFlag; #ifdef G_ENABLE_DEBUG |