Skip to content

Commit 3c56b1d

Browse files
Enable full features.
1 parent 63f4cb6 commit 3c56b1d

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
@@ -808,9 +808,9 @@ extern void InitElgatoCloud(obs_module_t *module)
808808
obs_log(LOG_INFO, "version: %s", "0.0.3-maker");
809809

810810
elgatoCloud = new ElgatoCloud(module);
811-
//QAction *action = (QAction *)obs_frontend_add_tools_menu_qaction(
812-
// "Elgato Marketplace");
813-
//action->connect(action, &QAction::triggered, OpenElgatoCloudWindow);
811+
QAction *action = (QAction *)obs_frontend_add_tools_menu_qaction(
812+
"Elgato Marketplace");
813+
action->connect(action, &QAction::triggered, OpenElgatoCloudWindow);
814814
}
815815

816816
} // namespace elgatocloud

src/plugin-module.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ bool obs_module_load(void)
7070
elgatocloud::InitElgatoCloud(obs_current_module());
7171
config_t* const global_config = obs_frontend_get_global_config();
7272
bool makerTools = config_get_bool(global_config, "ElgatoCloud", "MakerTools");
73-
if (makerTools || true) {
73+
if (makerTools) {
7474
obs_frontend_add_tools_menu_item("Export Marketplace Scene",
7575
export_collection, NULL);
7676
obs_frontend_add_tools_menu_item("Import Marketplace Scene",

0 commit comments

Comments
 (0)