obs-studio/UI/crash-report.hpp
cg2121 ed32dcc677 UI: Force fixed font in plain text edits
Since the Yami QSS changes the default font for widgets, we need
to force the system fixed font for plain text edits.
2022-08-22 17:26:50 -07:00

19 lines
259 B
C++

#pragma once
#include <QDialog>
class OBSPlainTextEdit;
class OBSCrashReport : public QDialog {
Q_OBJECT
OBSPlainTextEdit *textBox;
public:
OBSCrashReport(QWidget *parent, const char *text);
public slots:
void ExitClicked();
void CopyClicked();
};