Commit c007aa08 authored by Adam Kallai's avatar Adam Kallai Committed by The Qt Project
Browse files

Fix reload button in the QuickNanoBrowser


Change-Id: I3670380d76d014a33e0112631bdb42927b67b9d9
Reviewed-by: default avatarAndras Becsi <andras.becsi@digia.com>
parent ffea2e93
No related merge requests found
Showing with 1 addition and 1 deletion
......@@ -100,7 +100,7 @@ ApplicationWindow {
ToolButton {
id: reloadButton
iconSource: tabs.currentView && tabs.currentView.loading ? "icons/process-stop.png" : "icons/view-refresh.png"
onClicked: tabs.currentView.reload()
onClicked: tabs.currentView && tabs.currentView.loading ? tabs.currentView.stop() : tabs.currentView.reload()
}
TextField {
id: addressBar
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment