aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/transaction.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/desktop/transaction.c')
-rw-r--r--sway/desktop/transaction.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sway/desktop/transaction.c b/sway/desktop/transaction.c
index d2932c87..7050d70c 100644
--- a/sway/desktop/transaction.c
+++ b/sway/desktop/transaction.c
@@ -6,6 +6,7 @@
6#include <wlr/types/wlr_buffer.h> 6#include <wlr/types/wlr_buffer.h>
7#include <wlr/types/wlr_linux_dmabuf.h> 7#include <wlr/types/wlr_linux_dmabuf.h>
8#include "sway/debug.h" 8#include "sway/debug.h"
9#include "sway/desktop/idle_inhibit_v1.h"
9#include "sway/desktop/transaction.h" 10#include "sway/desktop/transaction.h"
10#include "sway/output.h" 11#include "sway/output.h"
11#include "sway/tree/container.h" 12#include "sway/tree/container.h"
@@ -245,6 +246,7 @@ static void transaction_progress_queue() {
245 transaction_destroy(transaction); 246 transaction_destroy(transaction);
246 } 247 }
247 server.transactions->length = 0; 248 server.transactions->length = 0;
249 idle_inhibit_v1_check_active(&server);
248} 250}
249 251
250static int handle_timeout(void *data) { 252static int handle_timeout(void *data) {
@@ -320,6 +322,7 @@ void transaction_commit(struct sway_transaction *transaction) {
320 wlr_log(L_DEBUG, "Transaction %p has nothing to wait for", transaction); 322 wlr_log(L_DEBUG, "Transaction %p has nothing to wait for", transaction);
321 transaction_apply(transaction); 323 transaction_apply(transaction);
322 transaction_destroy(transaction); 324 transaction_destroy(transaction);
325 idle_inhibit_v1_check_active(&server);
323 return; 326 return;
324 } 327 }
325 328