[gimp] Bug 760906 - Fixing warning on new themes.



commit a3185f8794dc8ddd59e6deb3c8dc9f1e20b74710
Author: Jehan <jehan girinstud io>
Date:   Sat Feb 6 02:00:06 2016 +0100

    Bug 760906 - Fixing warning on new themes.
    
    Both new themes were outputting the following warning for gap_left.png:
    "Invalid borders specified for theme pixmap"
    "borders don't fit within the image"
    The problem was that the sum of the left and right gap borders cannot be
    more than the gap file width (2 px in our case).

 themes/The-Dark-Side-of-Gimp/gtkrc  |    2 +-
 themes/The-Light-Side-of-Gimp/gtkrc |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/themes/The-Dark-Side-of-Gimp/gtkrc b/themes/The-Dark-Side-of-Gimp/gtkrc
index bee538b..2068142 100644
--- a/themes/The-Dark-Side-of-Gimp/gtkrc
+++ b/themes/The-Dark-Side-of-Gimp/gtkrc
@@ -711,7 +711,7 @@ style "tdsog-notebook-style" = "tdsog-default-style"
           border = { 3, 3, 3, 3 }
           stretch = TRUE
           gap_file = "ui/gap_left.png"
-          gap_border = { 2, 2, 2, 2 }
+          gap_border = { 1, 1, 2, 2 }
           gap_start_file = "ui/null.png"
           gap_end_file = "ui/null.png"
           gap_side = LEFT
diff --git a/themes/The-Light-Side-of-Gimp/gtkrc b/themes/The-Light-Side-of-Gimp/gtkrc
index 9182973..4c9e3f5 100644
--- a/themes/The-Light-Side-of-Gimp/gtkrc
+++ b/themes/The-Light-Side-of-Gimp/gtkrc
@@ -712,7 +712,7 @@ style "tlsog-notebook-style" = "tlsog-default-style"
           border = { 3, 3, 3, 3 }
           stretch = TRUE
           gap_file = "ui/gap_left.png"
-          gap_border = { 2, 2, 2, 2 }
+          gap_border = { 1, 1, 2, 2 }
           gap_start_file = "ui/null.png"
           gap_end_file = "ui/null.png"
           gap_side = LEFT


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]