aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIsaac Freund <ifreund@ifreund.xyz>2020-06-08 01:16:15 +0200
committerIsaac Freund <ifreund@ifreund.xyz>2020-06-08 01:16:15 +0200
commit5f2aa021327b7dc36e4c14f78e1c9046199d635c (patch)
treed7c3cf2beee8bc7a9b228e057aff6ef05b6d35a4
parentc0d7e71ec499d3e520c5567f4fbf6c6bda723adc (diff)
downloadriver-5f2aa021327b7dc36e4c14f78e1c9046199d635c.tar.gz
river-5f2aa021327b7dc36e4c14f78e1c9046199d635c.tar.xz
transactions: set timeout back to 200ms
The change to 1000ms was an accident
-rw-r--r--river/Root.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/river/Root.zig b/river/Root.zig
index b84a568..f009d32 100644
--- a/river/Root.zig
+++ b/river/Root.zig
@@ -190,7 +190,7 @@ fn startTransaction(self: *Self) void {
);
// Set timeout to 200ms
- if (c.wl_event_source_timer_update(self.transaction_timer, 1000) < 0) {
+ if (c.wl_event_source_timer_update(self.transaction_timer, 200) < 0) {
Log.Error.log("failed to update timer.", .{});
self.commitTransaction();
}