diff options
Diffstat (limited to 'src/gui/widgets/desktop.cpp')
-rw-r--r-- | src/gui/widgets/desktop.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/desktop.cpp b/src/gui/widgets/desktop.cpp index fca9d9ff9..65c7eda77 100644 --- a/src/gui/widgets/desktop.cpp +++ b/src/gui/widgets/desktop.cpp @@ -53,11 +53,11 @@ Desktop::Desktop(const Widget2 *const widget) : if (appName.empty()) { - mVersionLabel = new Label(FULL_VERSION); + mVersionLabel = new Label(this, FULL_VERSION); } else { - mVersionLabel = new Label(strprintf("%s (%s)", FULL_VERSION, + mVersionLabel = new Label(this, strprintf("%s (%s)", FULL_VERSION, appName.c_str())); } |