mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-29 17:45:45 +08:00
14 lines
408 B
Python
14 lines
408 B
Python
# 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")
|