mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 06:57:28 -06:00
Added PluginBrowser stub
CURA-3856
This commit is contained in:
parent
14fb01ee46
commit
b9e863a953
3 changed files with 37 additions and 0 deletions
18
plugins/PluginBrowser/PluginBrowser.py
Normal file
18
plugins/PluginBrowser/PluginBrowser.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
# Copyright (c) 2017 Ultimaker B.V.
|
||||
# PluginBrowser is released under the terms of the AGPLv3 or higher.
|
||||
|
||||
|
||||
from UM.Extension import Extension
|
||||
from UM.i18n import i18nCatalog
|
||||
|
||||
|
||||
i18n_catalog = i18nCatalog("cura")
|
||||
|
||||
|
||||
class PluginBrowser(Extension):
|
||||
def __init__(self):
|
||||
super().__init__()
|
||||
self.addMenuItem(i18n_catalog.i18n("Browse plugins"), self.browsePlugins)
|
||||
|
||||
def browsePlugins(self):
|
||||
pass
|
Loading…
Add table
Add a link
Reference in a new issue