Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Xlib/ext/shape.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,16 +200,17 @@ class Event:
# Sub events.
Notify = 0

def combine(self, operation, destination_kind, source_kind, x_offset, y_offset):
def combine(self, operation, destination_kind, source_kind, x_offset, y_offset, source_window):
Combine(
display=self.display,
opcode=self.display.get_extension_major(extname),
source_window=self,
destination_window=self,
operation=operation,
destination_kind=destination_kind,
source_kind=source_kind,
x_offset=x_offset,
y_offset=y_offset,
source_window=source_window
)

def get_rectangles(self, source_kind):
Expand Down