Added a seperate option to enable outgoing typing notifications

This commit is contained in:
James Booth
2012-11-01 00:12:35 +00:00
parent 270ac03558
commit 4be7833e2b
6 changed files with 52 additions and 9 deletions

View File

@@ -248,6 +248,19 @@ prefs_set_states(gboolean value)
_save_prefs();
}
gboolean
prefs_get_outtype(void)
{
return g_key_file_get_boolean(prefs, "ui", "outtype", NULL);
}
void
prefs_set_outtype(gboolean value)
{
g_key_file_set_boolean(prefs, "ui", "outtype", value);
_save_prefs();
}
gboolean
prefs_get_notify_typing(void)
{