mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 03:17:46 +03:00
transaction: validate X transaction completions by geometry, not size
Xwayland views are aware of their coordinates, so validating transaction
completions should take into account the reported coordinates of the
view. Prior to this commit they didn't, and matching dimensions would
suffice to validate the transaction.
Also introduced `transaction_notify_view_ready_immediately` to support
the fix from d0f7e0f
without jumping through hoops to figure out the
geometry of an `xdg_shell` view.
This commit is contained in:
parent
5bd6a5ce3f
commit
8355884fbd
4 changed files with 26 additions and 11 deletions
|
@ -38,11 +38,17 @@ void transaction_notify_view_ready_by_serial(struct sway_view *view,
|
|||
|
||||
/**
|
||||
* Notify the transaction system that a view is ready for the new layout, but
|
||||
* identifying the instruction by width and height rather than by serial.
|
||||
* identifying the instruction by geometry rather than by serial.
|
||||
*
|
||||
* This is used by xwayland views, as they don't have serials.
|
||||
*/
|
||||
void transaction_notify_view_ready_by_size(struct sway_view *view,
|
||||
int width, int height);
|
||||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue