diff options
author | hwspeedy <ns@bigbear.dk> | 2024-05-01 08:51:01 +0200 |
---|---|---|
committer | hwspeedy <ns@bigbear.dk> | 2024-05-01 08:51:01 +0200 |
commit | 3aad0054fbc0f4492871ded0f508d6d3d264acef (patch) | |
tree | e5b3ef7d7f5db91fb02e03014fbeccec22b4384a /modules | |
parent | 2ef5db91d2acbbf15690471ad3ea55ad6531a86a (diff) |
FIX strwrap computer->language for improved UI
Diffstat (limited to 'modules')
-rw-r--r-- | modules/computer.c | 2 |
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()); |