From b8bcf23c7698e9611d82636434e45e7e189e2f52 Mon Sep 17 00:00:00 2001 From: jNullj <15849761+jNullj@users.noreply.github.com> Date: Fri, 18 Aug 2023 12:32:09 +0300 Subject: [PATCH] fix format --- src/core/Config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/Config.cpp b/src/core/Config.cpp index 2076db6716..8472cca137 100644 --- a/src/core/Config.cpp +++ b/src/core/Config.cpp @@ -515,7 +515,7 @@ QPair Config::defaultConfigFiles() // Qt does not support XDG_STATE_HOME yet, change this once XDG_STATE_HOME is added QString xdgStateHome; xdgStateHome = QFile::decodeName(qgetenv("XDG_STATE_HOME")); - if (!xdgStateHome.startsWith(u'/')){ + if (!xdgStateHome.startsWith(u'/')) { xdgStateHome.clear(); // spec says relative paths should be ignored } if (xdgStateHome.isEmpty()) {