We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e038ee commit de0e3f9Copy full SHA for de0e3f9
3 files changed
plugin_exporter/icon.png
264 KB
plugin_exporter/plugin_exporter.py
@@ -226,9 +226,9 @@ def get_plugins(self):
226
self.add_plugins_to_table(plugins)
227
228
def add_plugins_to_table(self, plugins):
229
+ self.plugins_metadata.clear()
230
self.clear_plugins_table()
231
table = self.dlg.table_plugins
-
232
for plugin in plugins:
233
metadata = self.iface.pluginManagerInterface().pluginMetadata(plugin)
234
if self.dlg.chk_official_plugins.isChecked():
@@ -323,6 +323,7 @@ def import_plugins(self):
323
input_file = self.dlg.file_input_import.filePath()
324
file_extension = pathlib.Path(input_file).suffix
325
installed_plugins = qgis.utils.available_plugins
326
+ pyplugin_installer.instance().fetchAvailablePlugins()
327
328
if file_extension == '.csv':
329
try:
0 commit comments