Skip to content

Commit

Permalink
border attribute must be initialized
Browse files Browse the repository at this point in the history
so that we can run the client without window forwarding enabled
  • Loading branch information
totaam committed Aug 7, 2024
1 parent 013123a commit dea2c65
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions xpra/client/gtk3/client_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ def __init__(self):
self.gl_max_viewport_dims = 0, 0
self.gl_texture_size_limit = 0
self._cursors = weakref.WeakKeyDictionary()
self.border_str = "no"
# frame request hidden window:
self.frame_request_window = None
# group leader bits:
Expand All @@ -159,6 +160,7 @@ def __init__(self):
def init(self, opts) -> None:
GObjectXpraClient.init(self, opts)
UIXpraClient.init(self, opts)
self.border_str = opts.border

def setup_frame_request_windows(self) -> None:
# query the window manager to get the frame size:
Expand Down

0 comments on commit dea2c65

Please sign in to comment.