From e80ce2ed4cc603c0b52f9cb344f39c64048478e0 Mon Sep 17 00:00:00 2001 From: "Mohammad H. AlShami" Date: Mon, 31 Aug 2026 10:28:59 +0300 Subject: [PATCH] Fix build error --- src/Surface.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Surface.zig b/src/Surface.zig index 5e3f84884..775292127 100644 --- a/src/Surface.zig +++ b/src/Surface.zig @@ -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 }); } }, };