Skip to content

Commit

Permalink
feat(qdt export): display messagebox after export
Browse files Browse the repository at this point in the history
  • Loading branch information
jmkerloch committed Oct 3, 2024
1 parent e907c6e commit 8bf505a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions profile_manager/profile_manager_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
from typing import Optional

from qgis.PyQt import QtWidgets, uic
from qgis.PyQt.QtWidgets import QMessageBox
from .userInterface.mdl_profiles import ProfileListModel
from .qdt_export.profile_export import export_profile_for_qdt, get_qdt_profile_infos_from_file, QDTProfileInfos

Expand Down Expand Up @@ -120,3 +121,12 @@ def export_qdt_handler(self) -> None:
clear_export_path=self.qdt_clear_export_folder_checkbox.isChecked(),
export_inactive_plugin=self.qdt_inactive_plugin_export_checkbox.isChecked(),
)
QMessageBox.information(
self,
self.tr("QDT profile export"),
self.tr(
"QDT profile have been successfully exported."
),
)


0 comments on commit 8bf505a

Please sign in to comment.