1 From 36c7deb35719d2219dc6e868ab14d9a4ce984d1f Mon Sep 17 00:00:00 2001
2 From: Marius Vlad <marius.vlad@collabora.com>
3 Date: Mon, 25 Jul 2022 15:51:06 +0300
4 Subject: [PATCH 2/3] shell/configuration: Obey json configuration file
6 Setting the name of the application to kApplicationName, by default,
7 would cause the check in getCliOverrides to always be true, which in
8 turn will ignore whatever the user specified in the configuration file.
10 Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
12 shell/configuration/configuration.cc | 2 ++
14 2 files changed, 3 insertions(+), 1 deletion(-)
16 diff --git a/shell/configuration/configuration.cc b/shell/configuration/configuration.cc
17 index f8b1e13..616de48 100644
18 --- a/shell/configuration/configuration.cc
19 +++ b/shell/configuration/configuration.cc
20 @@ -220,6 +220,8 @@ std::vector<struct Configuration::Config> Configuration::ParseConfig(
21 if (cfg.view.height == 0) {
22 cfg.view.height = kDefaultViewHeight;
24 + if (cfg.app_id.empty())
25 + cfg.app_id = kApplicationName;
27 res.emplace_back(cfg);
29 diff --git a/shell/main.cc b/shell/main.cc
30 index 65c3f37..6fdd907 100644
33 @@ -44,7 +44,7 @@ void RemoveArgument(std::vector<std::string>& args, const std::string& arg) {
35 int main(int argc, char** argv) {
36 struct Configuration::Config config {
37 - .app_id = kApplicationName, .json_configuration_path{}, .cursor_theme{},
38 + .app_id = {}, .json_configuration_path{}, .cursor_theme{},
39 .disable_cursor{}, .debug_backend{}, .view {}