mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-05-18 13:33:27 -04:00
frontend: Add new Idian widgets
Co-Authored-By: derrod <rodney@rodney.io>
This commit is contained in:
@@ -42,6 +42,10 @@
|
||||
#endif
|
||||
#include <wizards/AutoConfig.hpp>
|
||||
|
||||
#ifdef ENABLE_WIDGET_PLAYGROUND
|
||||
#include "dialogs/OBSIdianPlayground.hpp"
|
||||
#endif
|
||||
|
||||
#include <qt-wrappers.hpp>
|
||||
|
||||
#include <QDesktopServices>
|
||||
@@ -635,6 +639,16 @@ void OBSBasic::on_stats_triggered()
|
||||
stats = statsDlg;
|
||||
}
|
||||
|
||||
void OBSBasic::on_widgetPlayground_triggered()
|
||||
{
|
||||
#ifdef ENABLE_WIDGET_PLAYGROUND
|
||||
OBSIdianPlayground playground(this);
|
||||
playground.setModal(true);
|
||||
playground.show();
|
||||
playground.exec();
|
||||
#endif
|
||||
}
|
||||
|
||||
void OBSBasic::on_actionShowAbout_triggered()
|
||||
{
|
||||
if (about)
|
||||
|
||||
Reference in New Issue
Block a user