This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/test/karma.conf.js b/test/karma.conf.js | |
| index c1004d6..0eb253c 100644 | |
| --- a/test/karma.conf.js | |
| +++ b/test/karma.conf.js | |
| @@ -47,7 +47,7 @@ logLevel = LOG_INFO; | |
| // enable / disable watching file and executing tests whenever any file changes | |
| -autoWatch = true; | |
| +autoWatch = false; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import cairo | |
| from gi.repository import Gtk | |
| from gi.repository import Gdk | |
| from gi.repository import GdkPixbuf | |
| from gi.repository import GObject | |
| import sys | |
| def _surface_from_file(file_location, ctx): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # test GTK3+ GtkTreeModel in PyGI | |
| from gi.repository import Gtk | |
| store = Gtk.ListStore(str, str) | |
| view = Gtk.TreeView() | |
| view.set_model(store) |
NewerOlder