Skip to content

Commit bae3b3b

Browse files
Release 0.0.7
1 parent 5147f7c commit bae3b3b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/elgato-cloud-window.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -798,9 +798,9 @@ extern void InitElgatoCloud(obs_module_t *module)
798798
obs_log(LOG_INFO, "version: %s", "0.0.7");
799799

800800
elgatoCloud = new ElgatoCloud(module);
801-
//QAction *action = (QAction *)obs_frontend_add_tools_menu_qaction(
802-
// "Elgato Marketplace");
803-
//action->connect(action, &QAction::triggered, OpenElgatoCloudWindow);
801+
QAction *action = (QAction *)obs_frontend_add_tools_menu_qaction(
802+
"Elgato Marketplace");
803+
action->connect(action, &QAction::triggered, OpenElgatoCloudWindow);
804804
}
805805

806806
extern void ShutDown()

src/plugin-module.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ bool obs_module_load(void)
7474
auto config = elgatocloud::GetElgatoCloudConfig();
7575
bool makerTools = obs_data_get_bool(config, "MakerTools");
7676
obs_data_release(config);
77-
if (makerTools || true) {
77+
if (makerTools) {
7878
obs_frontend_add_tools_menu_item("Export Marketplace Scene",
7979
export_collection, NULL);
8080
obs_frontend_add_tools_menu_item("Import Marketplace Scene",

0 commit comments

Comments
 (0)