From 1a6ea561948dc2de78d394d572416328d17a11ce Mon Sep 17 00:00:00 2001 From: PsiOmegaDelta Date: Sun, 21 Jun 2015 13:39:26 +0200 Subject: [PATCH] Fixes the Changelog menu button. It had lost the ability to go bold upon detected unread changelog entries. --- code/modules/client/client procs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/client/client procs.dm b/code/modules/client/client procs.dm index b02875304e..ec6e70807c 100644 --- a/code/modules/client/client procs.dm +++ b/code/modules/client/client procs.dm @@ -163,7 +163,7 @@ if(prefs.lastchangelog != changelog_hash) //bolds the changelog button on the interface so we know there are updates. src << "You have unread updates in the changelog." - winset(src, "rpane.changelogb", "background-color=#eaeaea;font-style=bold") + winset(src, "rpane.changelog", "background-color=#eaeaea;font-style=bold") if(config.aggressive_changelog) src.changes()