Skip to content

Commit

Permalink
fixes #3421: Duplicate workbench message
Browse files Browse the repository at this point in the history
  • Loading branch information
wwmayer committed Apr 6, 2018
1 parent e5f4279 commit 0258808
Showing 1 changed file with 1 addition and 39 deletions.
40 changes: 1 addition & 39 deletions src/Mod/JtReader/InitGui.py
@@ -1,4 +1,4 @@
# Raytracing gui init module
# JtReader gui init module
# (c) 2003 Juergen Riegel
#
# Gathering all the information to start FreeCAD
Expand Down Expand Up @@ -30,41 +30,3 @@
#***************************************************************************/



class RaytracingWorkbench ( Workbench ):
"Raytracing workbench object"
Icon = """
/* XPM */
static char *arrows[]={
"16 16 3 1",
"# c None",
". c None",
"a c #0000FF",
"...........##...",
"...........#a#..",
"...##.......#a#a",
"..aaa#.......#aa",
"..#aaa#......#aa",
"...#aaa#........",
"....#aaa#.......",
".....#aaa#...#..",
"......#aaa#.##..",
".......#aaa#a#..",
"........#aaaa#..",
"##.......#aaa#..",
"#a#.....#aaaa#..",
".#a##...#aaaa#..",
"..#aa...........",
"..aaa..........."};
"""
MenuText = "Raytracing"
ToolTip = "Raytracing workbench"

def Initialize(self):
# load the module
import PartGui
import RaytracingGui
def GetClassName(self):
return "RaytracingGui::Workbench"

Gui.addWorkbench(RaytracingWorkbench())

0 comments on commit 0258808

Please sign in to comment.