diff options
-rw-r--r-- | doc/theme-format.txt | 6 | ||||
-rw-r--r-- | src/ui/theme-parser.c | 4 |
2 files changed, 1 insertions, 9 deletions
diff --git a/doc/theme-format.txt b/doc/theme-format.txt index 80ddd328..ad2d2b74 100644 --- a/doc/theme-format.txt +++ b/doc/theme-format.txt @@ -22,12 +22,6 @@ This document has separate sections for each format version. You may want to read the document in reverse order, since the base features are discussed under version 1. -New Features in Theme Format Version 3.6 -======================================== - -Add new 'invisible_border' border in frame geometry. Used for resize -cursor area. - New Features in Theme Format Version 3.5 ======================================== diff --git a/src/ui/theme-parser.c b/src/ui/theme-parser.c index 6fadaa1d..a328fd06 100644 --- a/src/ui/theme-parser.c +++ b/src/ui/theme-parser.c @@ -38,7 +38,7 @@ * look out for. */ #define THEME_MAJOR_VERSION 3 -#define THEME_MINOR_VERSION 6 +#define THEME_MINOR_VERSION 5 #define THEME_VERSION (1000 * THEME_MAJOR_VERSION + THEME_MINOR_VERSION) #define MARCO_THEME_FILENAME_FORMAT "metacity-theme-%d.xml" @@ -1570,8 +1570,6 @@ parse_border (GMarkupParseContext *context, border = &info->layout->title_border; else if (strcmp (name, "button_border") == 0) border = &info->layout->button_border; - else if (strcmp (name, "invisible_border") == 0) - border = &info->layout->invisible_border; if (border == NULL) { |