We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a25b8a commit 0b02b60Copy full SHA for 0b02b60
src/qml/main.qml
@@ -9,16 +9,7 @@ ApplicationWindow {
9
id: root
10
visible: true
11
flags: Qt.Window | (Settings.alwaysOnTop ? Qt.WindowStaysOnTopHint : 0)
12
- Connections {
13
- target: Stdin
14
- function onClosedChanged() {
15
- if (Stdin.closed) {
16
- title = "blobdrop"
17
- } else {
18
- title = "blobdrop (Reading stdin...)"
19
- }
20
21
+ title: Stdin.closed ? "blobdrop" : "Reading from stdin..."
22
width: 485
23
height: 300
24
Material.theme: Material.System
0 commit comments