We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33ca61c commit 099189aCopy full SHA for 099189a
1 file changed
contents/ui/WebView.qml
@@ -571,6 +571,31 @@ Item {
571
}
572
573
574
+ PlasmaComponents3.ProgressBar {
575
+ id: loadingProgressBar
576
+
577
+ z: 10
578
+ visible: webview.loading && webview.loadProgress < 100
579
+ height: visible ? 3 : 0
580
581
+ anchors {
582
+ top: parent.top
583
+ left: parent.left
584
+ right: parent.right
585
+ }
586
587
+ from: 0
588
+ to: 100
589
+ value: webview.loadProgress
590
591
+ Behavior on height {
592
+ NumberAnimation {
593
+ duration: Kirigami.Units.shortDuration
594
+ easing.type: Easing.InOutQuad
595
596
597
598
599
Rectangle {
600
id: statusBubble
601
0 commit comments