X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=Cura%2Fgui%2FmainWindow.py;h=156f02078b579d5d801db38b8dcd024488a82b94;hb=410d1f8083ac0aab0c239672f67e9882ea1e855a;hp=971c19aa142d7aa830393625dfcefcaef5355456;hpb=9fdedf5a85803e0954eb0299044f901f262c2a05;p=cura.git diff --git a/Cura/gui/mainWindow.py b/Cura/gui/mainWindow.py index 971c19aa..156f0207 100644 --- a/Cura/gui/mainWindow.py +++ b/Cura/gui/mainWindow.py @@ -14,6 +14,7 @@ from Cura.gui import configWizard from Cura.gui import firmwareInstall from Cura.gui import simpleMode from Cura.gui import sceneView +from Cura.gui import aboutWindow from Cura.gui.util import dropTarget #from Cura.gui.tools import batchRun from Cura.gui.tools import pidDebugger @@ -526,31 +527,9 @@ class mainWindow(wx.Frame): wx.MessageBox(_("You are running the latest version of Cura!"), _("Awesome!"), wx.ICON_INFORMATION) def OnAbout(self, e): - info = wx.AboutDialogInfo() - info.SetName("Cura") - info.SetDescription(""" -End solution for Open Source Fused Filament Fabrication 3D printing. -* Cura is the graphical User Interface. -* CuraEngine is the slicer/gcode generator. -Cura and the CuraEngine are licensed AGPLv3. - """) - info.SetWebSite('http://software.ultimaker.com/') - info.SetCopyright(_("Copyright (C) David Braam")) - info.SetLicence(""" - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. - - You should have received a copy of the GNU Affero General Public License - along with this program. If not, see . -""") - wx.AboutBox(info) + aboutBox = aboutWindow.aboutWindow() + aboutBox.Centre() + aboutBox.Show() def OnClose(self, e): profile.saveProfile(profile.getDefaultProfilePath())