Skip to content

Commit c307599

Browse files
Release 0.0.8-maker
1 parent d48787e commit c307599

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
@@ -819,9 +819,9 @@ extern void InitElgatoCloud(obs_module_t *module)
819819
obs_log(LOG_INFO, "version: %s", "0.0.8");
820820

821821
elgatoCloud = new ElgatoCloud(module);
822-
QAction *action = (QAction *)obs_frontend_add_tools_menu_qaction(
823-
"Elgato Marketplace");
824-
action->connect(action, &QAction::triggered, OpenElgatoCloudWindow);
822+
//QAction *action = (QAction *)obs_frontend_add_tools_menu_qaction(
823+
// "Elgato Marketplace");
824+
//action->connect(action, &QAction::triggered, OpenElgatoCloudWindow);
825825
}
826826

827827
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) {
77+
if (makerTools || true) {
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)