-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2640 from alicevision/fix/aboutDialog
[ui] "About" dialog: Fix some display issues
- Loading branch information
Showing
3 changed files
with
7 additions
and
10 deletions.
There are no files selected for viewing
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,46 +71,42 @@ Dialog { | |
spacing: 4 | ||
Layout.alignment: Qt.AlignHCenter | ||
MaterialToolButton { | ||
text: MaterialIcons._public | ||
text: MaterialIcons.public_ | ||
font.pointSize: 21 | ||
palette.buttonText: root.palette.link | ||
ToolTip.text: "AliceVision Website" | ||
onClicked: Qt.openUrlExternally("https://alicevision.org") | ||
} | ||
MaterialToolButton { | ||
text: MaterialIcons.favorite | ||
font.pointSize: 21 | ||
palette.buttonText: root.palette.link | ||
ToolTip.text: "Donate to get a better software" | ||
onClicked: Qt.openUrlExternally("https://alicevision.org/association/#donate") | ||
} | ||
ToolButton { | ||
icon.source: "../img/GitHub-Mark-Light-32px.png" | ||
icon.source: "../img/github-mark-white.svg" | ||
icon.width: 24 | ||
icon.height: 24 | ||
icon.color: palette.text | ||
ToolTip.text: "Meshroom on Github" | ||
ToolTip.visible: hovered | ||
onClicked: Qt.openUrlExternally("https://github.com/alicevision/meshroom") | ||
onClicked: Qt.openUrlExternally("https://github.com/alicevision/Meshroom") | ||
} | ||
MaterialToolButton { | ||
text: MaterialIcons.bug_report | ||
font.pointSize: 21 | ||
ToolTip.text: "Report a Bug (GitHub account required)" | ||
palette.buttonText: "#F44336" | ||
property string body: "**Configuration**\n" + config.text | ||
onClicked: Qt.openUrlExternally("https://github.com/alicevision/meshroom/issues/new?body="+body) | ||
property string body: "**Configuration**\n\n" + config.text | ||
onClicked: Qt.openUrlExternally("https://github.com/alicevision/Meshroom/issues/new?body="+body) | ||
} | ||
MaterialToolButton { | ||
text: MaterialIcons.forum | ||
font.pointSize: 21 | ||
palette.buttonText: Qt.lighter(systemPalette.buttonText, 1.3) | ||
ToolTip.text: "Public Mailing-List (open discussions, use-cases, problems, best practices...)" | ||
onClicked: Qt.openUrlExternally("https://groups.google.com/forum/#!forum/alicevision") | ||
} | ||
MaterialToolButton { | ||
text: MaterialIcons.mail | ||
font.pointSize: 21 | ||
palette.buttonText: Qt.lighter(systemPalette.buttonText, 1.3) | ||
ToolTip.text: "Private Contact ([email protected])" | ||
onClicked: Qt.openUrlExternally("mailto:[email protected]") | ||
} | ||
|