From 0261376886362d8af67c525ab614ee563fe573ff Mon Sep 17 00:00:00 2001 From: "vladimir.kuznetsov" Date: Fri, 23 May 2025 14:02:51 +0800 Subject: [PATCH] chore: remove unused file --- client/ui/Controls2 | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 client/ui/Controls2 diff --git a/client/ui/Controls2 b/client/ui/Controls2 deleted file mode 100644 index 13f01bb7..00000000 --- a/client/ui/Controls2 +++ /dev/null @@ -1,34 +0,0 @@ -import QtQuick -import QtQuick.Controls -import QtQuick.Layouts - -TextArea { - id: root - - width: parent.width - - topPadding: 16 - leftPadding: 16 - - color: "#D7D8DB" - selectionColor: "#412102" - selectedTextColor: "#D7D8DB" - placeholderTextColor: "#878B91" - - font.pixelSize: 16 - font.weight: Font.Medium - font.family: "PT Root UI VF" - - wrapMode: Text.Wrap - - MouseArea { - anchors.fill: parent - acceptedButtons: Qt.RightButton - onClicked: contextMenu.open() - } - - ContextMenuType { - id: contextMenu - textObj: textField - } -}