View Single Post
Old 04-18-2020, 09:23 AM   #11
The_book
Zealot
The_book began at the beginning.
 
Posts: 100
Karma: 10
Join Date: Aug 2019
Device: none
By adding
Code:
class TXTUIForm(Ui_Form):
    def setupUi(self, Form):
        super(TXTUIForm, self).setupUi(Form)
        def delete(layout, widget):
            layout.removeWidget(widget)
            widget.deleteLater()
        delete(self.gridLayout,self.label_4)
        delete(self.gridLayout,self.opt_txt_output_formatting)
        delete(self.verticalLayout,self.opt_keep_color)
I remove formatting and keep text color in GUI
Attached Files
File Type: zip Markdown Output.zip (5.2 KB, 474 views)
The_book is offline   Reply With Quote