summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2016-05-13 12:56:51 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-01 15:28:23 +0100
commitc53c7418d392452450352ca2175667dbdbd92401 (patch)
treef60be6f673e47aee6a317ce8730ecb0fac849255 /bin
parent710351610e3ca4a1b61abc67564f84907e9b2f1c (diff)
downloadbitbake-contrib-c53c7418d392452450352ca2175667dbdbd92401.tar.gz
image-writer/goggle: Disable pygtkcompat problems
Disable the problematic gtk usage for use with pygtkcompat. The following commit removes these tools/UIs entirely but we may as well leave this piece in the history in case anyone does want a starting point for reusing them. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/image-writer3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/image-writer b/bin/image-writer
index 7ab1d8c97..40e284d59 100755
--- a/bin/image-writer
+++ b/bin/image-writer
@@ -67,7 +67,8 @@ class DeployWindow(gtk.Window):
self.deploy_dialog = DeployImageDialog(Title, image_path, self,
gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT
- | gtk.DIALOG_NO_SEPARATOR, None, standalone=True)
+ , None, standalone=True)
+#FIXME | gtk.DIALOG_NO_SEPARATOR
close_button = self.deploy_dialog.add_button("Close", gtk.RESPONSE_NO)
HobAltButton.style_button(close_button)
close_button.connect('clicked', gtk.main_quit)