Thanks for your reply
I have actually found what im looking for in the GUI Python files, it doesn't look too difficult.
However i can't find where the python files that defines the basic and advanced tabs.
I can see the section within the file mainWindow.py
(left, right, self.printPanel) = self.CreateDynamicConfigTab(self.nb, _('Basic'))
self._addSettingsToPanels('basic', left, right)
self.SizeLabelWidths(left, right)
(left, right, self.advancedPanel) = self.CreateDynamicConfigTab(self.nb, _('Advanced'))
self._addSettingsToPanels('advanced', left, right)
self.SizeLabelWidths(left, right)
Looking at the function "addSettingsToPanels" doesn't lead to anywhere either.
Recommended Posts
nallath 1,124
Check the code on github. If you're somewhat proficient with Python (or any coding language for that matter), it should be pretty self explanatory. If you're not proficient with coding, no amount of pointers from our end will help you
Link to post
Share on other sites