diff options
author | Denis Gorodnichev <[email protected]> | 2014-03-07 00:04:47 +0400 |
---|---|---|
committer | Denis Gorodnichev <[email protected]> | 2014-03-07 00:12:31 +0400 |
commit | 2425d611fccb0fa43cfd85a967d41d0777ecd353 (patch) | |
tree | 35194ea21e1ca2f87fc9e48dd65a161965136e7c /src/ui/frames.h | |
parent | fbf946868da97fdbc147951e48bf483d1ba15f4f (diff) | |
download | marco-2425d611fccb0fa43cfd85a967d41d0777ecd353.tar.bz2 marco-2425d611fccb0fa43cfd85a967d41d0777ecd353.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 b1d178ad..54c7146a 100644 --- a/src/ui/frames.h +++ b/src/ui/frames.h @@ -89,7 +89,11 @@ struct _MetaUIFrame struct _MetaFrames { +#if GTK_CHECK_VERSION (3, 0, 0) + GtkInvisible parent_instance; +#else GtkWindow parent_instance; +#endif GHashTable *text_heights; @@ -107,8 +111,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; |