Skip to content

Commit

Permalink
plugin optimisation
Browse files Browse the repository at this point in the history
  • Loading branch information
rohankishore committed Oct 13, 2024
1 parent 99c19db commit 42ab020
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions auratext/Core/window.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,8 @@ def __init__(self):

self._config["show_setup_info"] = "False"

self.plugin_actions_dock = PluginActions("Plugin Actions", self)

def splashScreen():
# Splash Screen
splash_pix = ""
Expand Down Expand Up @@ -483,6 +485,9 @@ def expandSidebar__PluginActions(self):

self.addDockWidget(Qt.DockWidgetArea.RightDockWidgetArea, self.plugin_actions_dock)

def addWidget_toPlugin(self, widget):
self.plugin_layout.addWidget(widget)

def new_project(self):
new_folder_path = QFileDialog.getExistingDirectory(self,
"Create New Folder",
Expand Down

0 comments on commit 42ab020

Please sign in to comment.