From 4e9b49c3ad03d4b124a232040093fe282e6db616 Mon Sep 17 00:00:00 2001 From: Federico Terzi Date: Sun, 13 Feb 2022 19:20:29 +0100 Subject: [PATCH] fix(modulo): change search bar window type to retain focus on Ubuntu. Fix #829 --- espanso-modulo/src/sys/search/search.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/espanso-modulo/src/sys/search/search.cpp b/espanso-modulo/src/sys/search/search.cpp index a06f796..6d4ac54 100644 --- a/espanso-modulo/src/sys/search/search.cpp +++ b/espanso-modulo/src/sys/search/search.cpp @@ -41,7 +41,7 @@ const long DEFAULT_STYLE = wxSTAY_ON_TOP | wxFRAME_TOOL_WINDOW | wxRESIZE_BORDER #endif #ifdef __LINUX__ const int SEARCH_BAR_FONT_SIZE = 20; -const long DEFAULT_STYLE = wxSTAY_ON_TOP | wxFRAME_TOOL_WINDOW | wxBORDER_NONE; +const long DEFAULT_STYLE = wxSTAY_ON_TOP; #endif const int HELP_TEXT_FONT_SIZE = 10;