mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Fix crash when changing background color of a Text Document
When changing a text documents background color (using the Application Settings dialog) Qucs crashed. This was due to the changed inheritance of TextDoc, from QTextEdit to QPlainTextEdit, which was not updated here.
This commit is contained in:
parent
8bf669f762
commit
cc226d7054
@ -488,7 +488,7 @@ void QucsSettingsDialog::slotApply()
|
||||
int No=0;
|
||||
QWidget *w;
|
||||
while((w=App->DocumentTab->page(No++)) != 0)
|
||||
if(w->inherits("QTextEdit"))
|
||||
if(w->inherits("QPlainTextEdit"))
|
||||
((TextDoc*)w)->viewport()->setPaletteBackgroundColor(
|
||||
QucsSettings.BGColor);
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user