gtk-stream 0.13.5__tar.gz → 0.13.6__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/PKG-INFO +1 -1
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream/_version.py +2 -2
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream/application.py +3 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream/command_line.py +1 -4
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream/documents/classes/Document.py +2 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream.egg-info/PKG-INFO +1 -1
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/README.md +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk-stream +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream/__init__.py +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream/common.py +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream/documents/__init__.py +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream/documents/classes/Box.py +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream/documents/classes/Button.py +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream/documents/classes/Dropdown.py +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream/documents/classes/Entry.py +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream/documents/classes/FlowBox.py +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream/documents/classes/Frame.py +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream/documents/classes/Grid.py +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream/documents/classes/Label.py +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream/documents/classes/Paned.py +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream/documents/classes/Picture.py +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream/documents/classes/ProgressBar.py +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream/documents/classes/Scale.py +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream/documents/classes/ScrolledWindow.py +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream/documents/classes/Separator.py +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream/documents/classes/Stack.py +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream/documents/classes/Switch.py +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream/documents/classes/__init__.py +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream/parser.py +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream/properties.py +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream.egg-info/SOURCES.txt +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream.egg-info/dependency_links.txt +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream.egg-info/entry_points.txt +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream.egg-info/requires.txt +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/gtk_stream.egg-info/top_level.txt +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/pyproject.toml +0 -0
- {gtk_stream-0.13.5 → gtk_stream-0.13.6}/setup.cfg +0 -0
@@ -93,8 +93,5 @@ function GTK.receive() {
|
|
93
93
|
parser_thread = threading.Thread(target = parser_main, daemon = True)
|
94
94
|
parser_thread.start()
|
95
95
|
|
96
|
-
|
97
|
-
# application attributes, and releases the semaphore so the
|
98
|
-
# application can start
|
99
|
-
app.attrs_set.acquire()
|
96
|
+
app.wait_for_init()
|
100
97
|
app.run()
|
@@ -42,6 +42,8 @@ class Document:
|
|
42
42
|
val = v(self.app)
|
43
43
|
self.app.logger.debug("Setting property '%s' to '%s' in widget %s", p, val, self.__class__)
|
44
44
|
w.set_property(p, val)
|
45
|
+
if self.id:
|
46
|
+
w.set_property("name", self.id)
|
45
47
|
w.insert_child = lambda d: self.insert_child(w, d)
|
46
48
|
def render(self):
|
47
49
|
w = self.render_raw()
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|