Commit f158b01b authored by Mikhail Tergoev's avatar Mikhail Tergoev

fixed disabling display of time spent in the game

parent d77a5841
......@@ -6778,9 +6778,12 @@ gui_userconf () {
*"${translations[dark]}") GTK_THEME=${GTK_THEME//${translations[dark]}/dark} ;;
esac
if [[ $DESKTOP_WITH_TIME == "${translations[Show in hours and minutes]}" ]]
then DESKTOP_WITH_TIME="posnumber1"
else DESKTOP_WITH_TIME="posnumber2"
if [[ $DESKTOP_WITH_TIME == "${translations[Show in hours and minutes]}" ]] ; then
DESKTOP_WITH_TIME="posnumber1"
elif [[ $DESKTOP_WITH_TIME == "${translations[Show in days, hours, minutes]}" ]] ; then
DESKTOP_WITH_TIME="posnumber2"
else
DESKTOP_WITH_TIME="disabled"
fi
if [[ $SORT_WITH_TIME == "${translations[According to last launch]}" ]]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment