@@ -34,8 +34,8 @@ def __init__(self, model, font_metric, main_window, parent=None):
3434 self .setSizePolicy (QSizePolicy .Fixed , QSizePolicy .Expanding )
3535
3636
37- class MeshAnnotationPanel (PlotterPanel ):
38- """Panel for mesh annotation options"""
37+ class MeshPanel (PlotterPanel ):
38+ """Panel for mesh options"""
3939
4040 def __init__ (self , model , font_metric , main_window , parent = None ):
4141 super ().__init__ (model , font_metric , main_window , parent )
@@ -70,7 +70,7 @@ def update(self):
7070
7171class TabbedDock (QDockWidget ):
7272 """
73- Dock widget containing tabbed panels for Geometry, Tallies, and Mesh Annotations
73+ Dock widget containing tabbed panels for Geometry, Tallies, and Meshes
7474 """
7575
7676 def __init__ (self , model , font_metric , parent = None ):
@@ -89,12 +89,12 @@ def __init__(self, model, font_metric, parent=None):
8989 # Create the three panels
9090 self .geometryPanel = GeometryPanel (model , font_metric , parent , self )
9191 self .tallyPanel = TallyPanel (model , font_metric , parent , self )
92- self .meshAnnotationPanel = MeshAnnotationPanel (model , font_metric , parent , self )
92+ self .meshAnnotationPanel = MeshPanel (model , font_metric , parent , self )
9393
9494 # Add panels as tabs
9595 self .tabWidget .addTab (self .geometryPanel , "Geometry" )
9696 self .tabWidget .addTab (self .tallyPanel , "Tallies" )
97- self .tabWidget .addTab (self .meshAnnotationPanel , "Mesh Annotations " )
97+ self .tabWidget .addTab (self .meshAnnotationPanel , "Meshes " )
9898
9999 # Create Apply Changes button
100100 self .applyButton = QPushButton ("Apply Changes" )
0 commit comments