fix borders

This commit is contained in:
FunkyFr3sh 2021-07-02 18:20:47 +02:00
parent 060efee9e2
commit 75babc1be4
3 changed files with 186 additions and 147 deletions

View file

@ -413,3 +413,9 @@ void __fastcall TConfigForm::NonexclusiveChkClick(TObject *Sender)
SaveSettings();
}
void __fastcall TConfigForm::PboxPaint(TObject *Sender)
{
TPaintBox *pbox = static_cast<TPaintBox*>(Sender);
pbox->Canvas->Rectangle(pbox->ClientRect);
}