Custom Query (2683 matches)
Results (55 - 57 of 2683)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#58 | fixed | transient windows should move with their parent (ie: menus) | ||
Description |
when a transient window (ie: a pop-up/down menu) is shown in another window, we can move the parent window which leaves the transient window behind in the wrong place... We'll need to find the relationship between the windows and move them by the same amount, which is going to be hard. |
|||
#59 | fixed | bindings cleanup: move it, split it, import side effects, etc | ||
Description |
time to do something about it |
|||
#60 | fixed | Typo in refresh_window() | ||
Description |
There's a typo in xpra/client.py:194 causing this error: Traceback (most recent call last): File "/usr/local/lib/python2.7/dist-packages/xpra/client.py", line 194, in refresh_window self._client.send_refresh(self, self._id) TypeError: send_refresh() takes exactly 2 arguments (3 given) Here's the fix --- xpra/client.py (revision 374) +++ xpra/client.py (working copy) @@ -191,7 +191,7 @@ def refresh_window(self): log.debug("Automatic refresh for id ", self._id) - self._client.send_refresh(self, self._id) + self._client.send_refresh(self._id) def refresh_all_windows(self): #this method is only here because we may want to fire it |
Note: See TracQuery
for help on using queries.