sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 1989b18ff281cb75f0e62a20e663767a9e82e55d
parent 35b9a41720e04bd7c74e81e0a63ee69d540f39e1
Author: Kenny Levinsen <kl@kl.wtf>
Date:   Mon,  8 Feb 2021 23:05:27 +0100

transaction: Remove unused ready_immediately

Diffstat:
Minclude/sway/desktop/transaction.h | 6------
Msway/desktop/transaction.c | 8--------
2 files changed, 0 insertions(+), 14 deletions(-)

diff --git a/include/sway/desktop/transaction.h b/include/sway/desktop/transaction.h @@ -51,10 +51,4 @@ void transaction_notify_view_ready_by_serial(struct sway_view *view, void transaction_notify_view_ready_by_geometry(struct sway_view *view, double x, double y, int width, int height); -/** - * Unconditionally notify the transaction system that a view is ready for the - * new layout. - */ -void transaction_notify_view_ready_immediately(struct sway_view *view); - #endif diff --git a/sway/desktop/transaction.c b/sway/desktop/transaction.c @@ -521,14 +521,6 @@ void transaction_notify_view_ready_by_geometry(struct sway_view *view, } } -void transaction_notify_view_ready_immediately(struct sway_view *view) { - struct sway_transaction_instruction *instruction = - view->container->node.instruction; - if (instruction != NULL) { - set_instruction_ready(instruction); - } -} - static void _transaction_commit_dirty(bool server_request) { if (!server.dirty_nodes->length) { return;