Changed titlebarversion command

This commit is contained in:
James Booth
2012-12-02 20:53:45 +00:00
parent 9d700f3f1f
commit 6cf33d65e7
2 changed files with 52 additions and 13 deletions

View File

@@ -251,13 +251,13 @@ prefs_set_vercheck(gboolean value)
gboolean
prefs_get_titlebarversion(void)
{
return g_key_file_get_boolean(prefs, "ui", "titlebarversion", NULL);
return g_key_file_get_boolean(prefs, "ui", "titlebar.version", NULL);
}
void
prefs_set_titlebarversion(gboolean value)
{
g_key_file_set_boolean(prefs, "ui", "titlebarversion", value);
g_key_file_set_boolean(prefs, "ui", "titlebar.version", value);
_save_prefs();
}