Skip to content

Commit

Permalink
added a button to open the job directory
Browse files Browse the repository at this point in the history
  • Loading branch information
nrondaud committed Sep 28, 2015
1 parent e132d2b commit 8f2fddb
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/qml/headers/JobHeader.qml
Original file line number Diff line number Diff line change
Expand Up @@ -102,5 +102,12 @@ Rectangle {
text: "refresh"
onClicked: currentJob.modelData.refresh()
}
CustomToolButton {
visible: (currentJob.status>=0)
iconSource: "qrc:///images/folder_outline.svg"
iconSize: _style.icon.size.small
onClicked: Qt.openUrlExternally(currentJob.url)
text: "open"
}
}
}

0 comments on commit 8f2fddb

Please sign in to comment.