fix: correct method name for getting selected plate in loadout manager

This commit is contained in:
LemonNexus 2026-02-11 10:41:01 +00:00
parent f1ac4c22c5
commit 91971d2268
1 changed files with 1 additions and 1 deletions

View File

@ -619,7 +619,7 @@ class LoadoutManagerDialog(QDialog):
dialog = PlateSelectorDialog(self)
if dialog.exec() == QDialog.DialogCode.Accepted:
plate = dialog.get_selected_plate()
plate = dialog.selected_plate
if plate:
self._set_plating(plate)