[gnome-builder] meson-templates: Work around Glade bug in ui file
- From: Patrick Griffis <pgriffis src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-builder] meson-templates: Work around Glade bug in ui file
- Date: Thu, 16 Nov 2017 17:17:22 +0000 (UTC)
commit b852c8cf45619e688e81695afa5e3e5535942e37
Author: Patrick Griffis <tingping tingping se>
Date: Thu Nov 16 12:16:13 2017 -0500
meson-templates: Work around Glade bug in ui file
For some reason Glade is case sensitive for booleans:
https://bugzilla.gnome.org/show_bug.cgi?id=790452
.../meson-templates/resources/src/window.ui | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/plugins/meson-templates/resources/src/window.ui
b/src/plugins/meson-templates/resources/src/window.ui
index cd92863..c957135 100644
--- a/src/plugins/meson-templates/resources/src/window.ui
+++ b/src/plugins/meson-templates/resources/src/window.ui
@@ -5,15 +5,15 @@
<property name="default-height">300</property>
<child type="titlebar">
<object class="GtkHeaderBar" id="header_bar">
- <property name="visible">true</property>
- <property name="show-close-button">true</property>
+ <property name="visible">True</property>
+ <property name="show-close-button">True</property>
<property name="title">Hello, World!</property>
</object>
</child>
<child>
<object class="GtkLabel" id="label">
<property name="label">Hello, World!</property>
- <property name="visible">true</property>
+ <property name="visible">True</property>
<attributes>
<attribute name="weight" value="bold"/>
<attribute name="scale" value="2"/>
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]