aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2016-05-08 18:05:52 -0400
committerJesse Luehrs <doy@tozt.net>2016-05-08 18:05:52 -0400
commit252b3d0474e68feea9d805a0f120dcdbf8f0a7b1 (patch)
treee8969eccf750a0c17e2aa0086c58b93cc6cef934
parent3ed41e360905442b8e29057684a486bd97801419 (diff)
downloadrunes-252b3d0474e68feea9d805a0f120dcdbf8f0a7b1.tar.gz
runes-252b3d0474e68feea9d805a0f120dcdbf8f0a7b1.zip
bump the default refresh rate up to 20ms
the default keyboard repeat rate is 40ms, so there's not really a reason to go significantly beyond that.
-rw-r--r--src/config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.c b/src/config.c
index 34ab1b4..e1c93bd 100644
--- a/src/config.c
+++ b/src/config.c
@@ -46,7 +46,7 @@ static void runes_config_set_defaults(RunesConfig *config)
config->audible_bell = 1;
config->bell_is_urgent = 1;
- config->redraw_rate = 5;
+ config->redraw_rate = 20;
config->cursorcolor = cairo_pattern_create_rgb(0.0, 1.0, 0.0);
config->mousecursorcolor = cairo_pattern_create_rgb(1.0, 1.0, 1.0);