Add "copy to clipboard" button to Debug Log window (#5913)

This commit is contained in:
RickyRister 2025-05-05 08:45:22 -07:00 committed by GitHub
parent 29d93fb9c1
commit a07c1badd8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 25 additions and 2 deletions

View file

@ -19,11 +19,13 @@ protected:
private:
QPlainTextEdit *logArea;
QCheckBox *coClearLog;
QPushButton *copyToClipboardButton;
void loadInitialLogBuffer();
private slots:
void appendLogEntry(const QString &message);
void actCheckBoxChanged(bool abNewValue);
void actCopyToClipboard();
};
#endif