aboutsummaryrefslogtreecommitdiff
path: root/modules/computer.c
diff options
context:
space:
mode:
authorhwspeedy <ns@bigbear.dk>2024-05-01 08:51:01 +0200
committerhwspeedy <ns@bigbear.dk>2024-05-01 08:51:01 +0200
commit3aad0054fbc0f4492871ded0f508d6d3d264acef (patch)
treee5b3ef7d7f5db91fb02e03014fbeccec22b4384a /modules/computer.c
parent2ef5db91d2acbbf15690471ad3ea55ad6531a86a (diff)
FIX strwrap computer->language for improved UI
Diffstat (limited to 'modules/computer.c')
-rw-r--r--modules/computer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/computer.c b/modules/computer.c
index 68802dea..075a2def 100644
--- a/modules/computer.c
+++ b/modules/computer.c
@@ -623,7 +623,7 @@ gchar *callback_os(void)
info_add_group(info, _("Current Session"),
info_field(_("Computer Name"), computer->os->hostname),
info_field(_("User Name"), computer->os->username),
- info_field(_("Language"), computer->os->language),
+ info_field(_("Language"), idle_free(strwrap(computer->os->language,80,';'))),
info_field(_("Home Directory"), computer->os->homedir),
info_field(_("Desktop Environment"), computer->os->desktop),
info_field_last());