Skip to content

Commit

Permalink
Add all installed plugins on GUI launch
Browse files Browse the repository at this point in the history
  • Loading branch information
aaroncameron-wk committed Aug 2, 2023
1 parent e795886 commit 300cff2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion arelle/CntlrWinMain.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
from arelle.Locale import format_string, setApplicationLocale
from arelle.CntlrWinTooltip import ToolTip
from arelle import XbrlConst
from arelle.PluginManager import pluginClassMethods
from arelle.PluginManager import addInstalledPluginModules, pluginClassMethods
from arelle.UrlUtil import isHttpUrl
from arelle.ValidateXbrlCalcs import ValidateCalcsMode as CalcsMode
from arelle.Version import copyrightLabel
Expand Down Expand Up @@ -73,6 +73,8 @@ def __init__(self, parent):
self.labelLang = overrideLang if overrideLang else self.modelManager.defaultLang
self.data = {}

addInstalledPluginModules()

# Background processes communicate with UI thread through this queue
# Prepare early so messages encountered during initialization can be queued for logging
self.uiThreadQueue = queue.Queue()
Expand Down

0 comments on commit 300cff2

Please sign in to comment.