mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-19 20:57:49 -06:00
Add sidebar view object
This commit is contained in:
parent
d69e397716
commit
1934bdfb99
1 changed files with 13 additions and 0 deletions
13
cura/SidebarView.py
Normal file
13
cura/SidebarView.py
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
# Copyright (c) 2017 Ultimaker B.V.
|
||||||
|
|
||||||
|
from UM.PluginObject import PluginObject
|
||||||
|
|
||||||
|
|
||||||
|
# Abstract class for sidebar view objects.
|
||||||
|
# By default the sidebar is Cura's settings, slicing and printing overview.
|
||||||
|
# The last plugin to claim the sidebar QML target will be displayed.
|
||||||
|
class SidebarView(PluginObject):
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
super().__init__()
|
||||||
|
print("sidebar view hello")
|
Loading…
Add table
Add a link
Reference in a new issue