diff options
author | Denis Gorodnichev <[email protected]> | 2014-03-07 00:04:47 +0400 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2014-04-23 18:48:10 +0200 |
commit | 96c7256d638b8c76c8abf786ba307e82a595dd67 (patch) | |
tree | db066ff282a1bd5648a7a5e2279869c3be6a950b /src/ui/frames.h | |
parent | fd2e0db8c8315fd8cecd45a422e9a8f161589841 (diff) | |
download | marco-96c7256d638b8c76c8abf786ba307e82a595dd67.tar.bz2 marco-96c7256d638b8c76c8abf786ba307e82a595dd67.tar.xz |
gtk3: remove always on top square at 0x0-200x200
Conflicts:
src/ui/frames.c
Diffstat (limited to 'src/ui/frames.h')
-rw-r--r-- | src/ui/frames.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/ui/frames.h b/src/ui/frames.h index b6fdd0de..8ada07ca 100644 --- a/src/ui/frames.h +++ b/src/ui/frames.h @@ -93,7 +93,11 @@ struct _MetaUIFrame struct _MetaFrames { +#if GTK_CHECK_VERSION (3, 0, 0) + GtkInvisible parent_instance; +#else GtkWindow parent_instance; +#endif GHashTable *text_heights; @@ -111,8 +115,11 @@ struct _MetaFrames struct _MetaFramesClass { +#if GTK_CHECK_VERSION (3, 0, 0) + GtkInvisibleClass parent_class; +#else GtkWindowClass parent_class; - +#endif }; GType meta_frames_get_type (void) G_GNUC_CONST; |