mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-05-13 18:04:26 -04:00
11 lines
190 B
C++
11 lines
190 B
C++
#pragma once
|
|
|
|
#include <QPlainTextEdit>
|
|
|
|
class OBSPlainTextEdit : public QPlainTextEdit {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit OBSPlainTextEdit(QWidget *parent = nullptr, bool monospace = true);
|
|
};
|