From eedc16ee343f683cee34b4484837363b6c014e91 Mon Sep 17 00:00:00 2001 From: marcoilla Date: Sun, 22 Jan 2023 17:33:39 +0100 Subject: [PATCH] Fix some UI issues and bugs in hyprland-share-picker --- hyprland-share-picker/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/hyprland-share-picker/main.cpp b/hyprland-share-picker/main.cpp index f1efd2f..f043493 100644 --- a/hyprland-share-picker/main.cpp +++ b/hyprland-share-picker/main.cpp @@ -105,6 +105,7 @@ int main(int argc, char *argv[]) { QString text = QString::fromStdString(std::string("Screen " + std::to_string(i) + " at " + std::to_string(GEOMETRY.x()) + ", " + std::to_string(GEOMETRY.y()) + " (" + std::to_string(GEOMETRY.width()) + "x" + std::to_string(GEOMETRY.height()) + ") (") + SCREENS[i]->name().toStdString() + ")"); + // resize text for graphical reason if (text.size() > 60) { text.resize(60);