From f351939d612dba905f747992f34e579f9b9bd7e1 Mon Sep 17 00:00:00 2001 From: Martin Felis Date: Fri, 14 Mar 2025 12:40:08 +0100 Subject: [PATCH] Tiny cleanup. --- src/main.cc | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/main.cc b/src/main.cc index fc95b60..59735fe 100644 --- a/src/main.cc +++ b/src/main.cc @@ -193,7 +193,7 @@ struct ApplicationConfig { AnimationPlayerWidget animation_player_widget; struct ViewportWidget { - bool visible = false; + bool visible = true; int position[2] = {20, 20}; int size[2] = {800, 500}; }; @@ -205,7 +205,6 @@ struct ApplicationConfig { }; void to_json(nlohmann::json& j, const ApplicationConfig& config) { - std::cerr << "converting to json" << std::endl; j["type"] = "AnimTestbedConfig"; j["main_window"]["position"][0] = config.window_position[0]; @@ -249,8 +248,6 @@ void to_json(nlohmann::json& j, const ApplicationConfig& config) { } void from_json(const nlohmann::json& j, ApplicationConfig& config) { - std::cerr << "converting from json" << std::endl; - if (j.contains("main_window")) { if (j["main_window"].contains("position") and j["main_window"]["position"].size() == 2) {