From 10d12e0b54d59de2ac2567c540a93113672cd884 Mon Sep 17 00:00:00 2001 From: "Violet (Larson)" Date: Sun, 19 Jan 2025 02:23:29 -0600 Subject: [PATCH] Give pins a different window title (#3766) * Give pins a different window title Workaround for a KDE issue where the capture window can't be differentiated from the pin window in any way, making the multi-monitor workaround in #3073 also break pins. * reformat window title Flameshot Pin => flameshot-pin --- src/tools/pin/pinwidget.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tools/pin/pinwidget.cpp b/src/tools/pin/pinwidget.cpp index 8baa19e783..a1a0ace5c0 100644 --- a/src/tools/pin/pinwidget.cpp +++ b/src/tools/pin/pinwidget.cpp @@ -39,6 +39,7 @@ PinWidget::PinWidget(const QPixmap& pixmap, // set the bottom widget background transparent setAttribute(Qt::WA_TranslucentBackground); setAttribute(Qt::WA_DeleteOnClose); + setWindowTitle("flameshot-pin"); ConfigHandler conf; m_baseColor = conf.uiColor(); m_hoverColor = conf.contrastUiColor();