1
0

plain-text-edit.hpp 196 B

1234567891011
  1. #pragma once
  2. #include <QPlainTextEdit>
  3. class OBSPlainTextEdit : public QPlainTextEdit {
  4. Q_OBJECT
  5. public:
  6. explicit OBSPlainTextEdit(QWidget *parent = nullptr,
  7. bool monospace = true);
  8. };