mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-29 05:40:12 -04:00
wlr_xwayland_surface: fix prefix of two functions
Since we're breaking this API anyways, replace the ambiguous "or" in the function name with the explicit "override redirect" to avoid confusion.
This commit is contained in:
parent
5ecbd23c1d
commit
d3b7e040af
2 changed files with 5 additions and 5 deletions
|
|
@ -2322,7 +2322,7 @@ void wlr_xwayland_surface_ping(struct wlr_xwayland_surface *surface) {
|
|||
surface->pinging = true;
|
||||
}
|
||||
|
||||
bool wlr_xwayland_or_surface_wants_focus(
|
||||
bool wlr_xwayland_surface_override_redirect_wants_focus(
|
||||
const struct wlr_xwayland_surface *xsurface) {
|
||||
static const enum atom_name needles[] = {
|
||||
NET_WM_WINDOW_TYPE_COMBO,
|
||||
|
|
@ -2347,8 +2347,8 @@ bool wlr_xwayland_or_surface_wants_focus(
|
|||
return true;
|
||||
}
|
||||
|
||||
enum wlr_xwayland_icccm_input_model wlr_xwayland_icccm_input_model(
|
||||
const struct wlr_xwayland_surface *xsurface) {
|
||||
enum wlr_xwayland_icccm_input_model wlr_xwayland_surface_icccm_input_model(
|
||||
const struct wlr_xwayland_surface *xsurface) {
|
||||
bool take_focus = xwm_atoms_contains(xsurface->xwm,
|
||||
xsurface->protocols, xsurface->protocols_len,
|
||||
WM_TAKE_FOCUS);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue