diff --git a/Cura/gui/preview3d.py b/Cura/gui/preview3d.py index 905122b..8ec9585 100644 --- a/Cura/gui/preview3d.py +++ b/Cura/gui/preview3d.py @@ -52,11 +52,11 @@ class previewPanel(wx.Panel): self.toolbar.AddSeparator() group = [] - self.normalViewButton = toolbarUtil.RadioButton(self.toolbar, group, 'object-mirror-x-on.png', 'object-mirror-x-off.png', 'Normal model view', callback=self.OnViewChange) - self.transparentViewButton = toolbarUtil.RadioButton(self.toolbar, group, 'object-mirror-x-on.png', 'object-mirror-x-off.png', 'Transparent model view', callback=self.OnViewChange) - self.xrayViewButton = toolbarUtil.RadioButton(self.toolbar, group, 'object-mirror-x-on.png', 'object-mirror-x-off.png', 'X-Ray view', callback=self.OnViewChange) - self.gcodeViewButton = toolbarUtil.RadioButton(self.toolbar, group, 'object-mirror-x-on.png', 'object-mirror-x-off.png', 'GCode view', callback=self.OnViewChange) - self.mixedViewButton = toolbarUtil.RadioButton(self.toolbar, group, 'object-mirror-x-on.png', 'object-mirror-x-off.png', 'Mixed model/GCode view', callback=self.OnViewChange) + self.normalViewButton = toolbarUtil.RadioButton(self.toolbar, group, 'view-normal-on.png', 'view-normal-off.png', 'Normal model view', callback=self.OnViewChange) + self.transparentViewButton = toolbarUtil.RadioButton(self.toolbar, group, 'view-transparent-on.png', 'view-transparent-off.png', 'Transparent model view', callback=self.OnViewChange) + self.xrayViewButton = toolbarUtil.RadioButton(self.toolbar, group, 'view-xray-on.png', 'view-xray-off.png', 'X-Ray view', callback=self.OnViewChange) + self.gcodeViewButton = toolbarUtil.RadioButton(self.toolbar, group, 'view-gcode-on.png', 'view-gcode-off.png', 'GCode view', callback=self.OnViewChange) + self.mixedViewButton = toolbarUtil.RadioButton(self.toolbar, group, 'view-mixed-on.png', 'view-mixed-off.png', 'Mixed model/GCode view', callback=self.OnViewChange) self.OnViewChange() self.toolbar.AddSeparator() diff --git a/Cura/images/view-gcode-off.png b/Cura/images/view-gcode-off.png new file mode 100644 index 0000000..714e92e Binary files /dev/null and b/Cura/images/view-gcode-off.png differ diff --git a/Cura/images/view-gcode-on.png b/Cura/images/view-gcode-on.png new file mode 100644 index 0000000..e8eb43e Binary files /dev/null and b/Cura/images/view-gcode-on.png differ diff --git a/Cura/images/view-mixed-off.png b/Cura/images/view-mixed-off.png new file mode 100644 index 0000000..7bc0942 Binary files /dev/null and b/Cura/images/view-mixed-off.png differ diff --git a/Cura/images/view-mixed-on.png b/Cura/images/view-mixed-on.png new file mode 100644 index 0000000..3aacec1 Binary files /dev/null and b/Cura/images/view-mixed-on.png differ diff --git a/Cura/images/view-normal-off.png b/Cura/images/view-normal-off.png new file mode 100644 index 0000000..268b737 Binary files /dev/null and b/Cura/images/view-normal-off.png differ diff --git a/Cura/images/view-normal-on.png b/Cura/images/view-normal-on.png new file mode 100644 index 0000000..674aa58 Binary files /dev/null and b/Cura/images/view-normal-on.png differ diff --git a/Cura/images/view-transparent-off.png b/Cura/images/view-transparent-off.png new file mode 100644 index 0000000..1482327 Binary files /dev/null and b/Cura/images/view-transparent-off.png differ diff --git a/Cura/images/view-transparent-on.png b/Cura/images/view-transparent-on.png new file mode 100644 index 0000000..1f63f2d Binary files /dev/null and b/Cura/images/view-transparent-on.png differ diff --git a/Cura/images/view-xray-off.png b/Cura/images/view-xray-off.png new file mode 100644 index 0000000..9e89835 Binary files /dev/null and b/Cura/images/view-xray-off.png differ diff --git a/Cura/images/view-xray-on.png b/Cura/images/view-xray-on.png new file mode 100644 index 0000000..8b7ff82 Binary files /dev/null and b/Cura/images/view-xray-on.png differ