mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-05 21:13:58 -06:00
Use "/<version>/<machineName>" as the material info URL suffix
CURA-3810
This commit is contained in:
parent
9b67fa94b4
commit
85e875257b
3 changed files with 14 additions and 1 deletions
|
@ -220,7 +220,10 @@ Column
|
|||
onClicked:
|
||||
{
|
||||
// open the material URL with web browser
|
||||
var url = "https://ultimaker.com/en/resources/23121-materials";
|
||||
var version = CuraApplication.getCuraVersion();
|
||||
var machineName = Cura.MachineManager.activeMachineDefinitionId;
|
||||
|
||||
var url = "https://ultimaker.com/materialcompatibility/" + version + "/" + machineName;
|
||||
Qt.openUrlExternally(url);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue