Fix build error

This commit is contained in:
Mohammad H. AlShami
2026-08-31 10:28:59 +03:00
parent dfccdb2d4d
commit e80ce2ed4c

View File

@@ -4051,11 +4051,11 @@ pub fn mouseButtonCallback(
if (button == .middle and action == .press) switch (self.config.middle_click_action) {
.ignore => {},
.@"clipboard-paste" => {
_ = try self.startClipboardRequest(.standard, .{ .paste = {} });
_ = try self.startClipboardRequest(.standard, .{ .paste = .standard });
},
.@"primary-paste" => {
if (self.rt_surface.supportsClipboard(.selection)) {
_ = try self.startClipboardRequest(.selection, .{ .paste = {} });
_ = try self.startClipboardRequest(.selection, .{ .paste = .selection });
}
},
};