Skip to content

Developer Information

Jakob Schnell edited this page Jun 8, 2021 · 2 revisions

Changes to the GUI

Changes to the GUI are not to be done manually, but rather via Qt Designer. The UI file in question can be opened via

$ designer ORStoolsDialogUI.ui

Saving the file and git diff ensures nothing gets changed that shouldn't get changed. The file then has to be "compiled" to python using

$ pyuic5 --import-from=. ORStoolsDialogUI.ui -o ORStoolsDialogUI.py

where the --import-from-option is used to correctly import resources_rc - otherwise QGIS 3.16 will complain.

Clone this wiki locally