mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-17 02:25:09 +00:00
Tweaks
Signed-off-by: Tin <tin.svagelj@live.com>
This commit is contained in:
parent
b4fa9b8ad9
commit
f6a08f79b4
@ -439,7 +439,7 @@ static void on_pointer_enter(void *data, wl_pointer *pointer, uint32_t serial,
|
||||
|
||||
size_t x = static_cast<size_t>(wl_fixed_to_double(surface_x));
|
||||
size_t y = static_cast<size_t>(wl_fixed_to_double(surface_y));
|
||||
last_known_positions[pointer] = {x, y};
|
||||
last_known_positions[pointer] = std::array<size_t, 2>{x, y};
|
||||
|
||||
size_t abs_x = w->rectangle.x + x;
|
||||
size_t abs_y = w->rectangle.y + y;
|
||||
@ -630,6 +630,7 @@ bool display_output_wayland::initialize() {
|
||||
|
||||
wl_surface_commit(global_window->surface);
|
||||
wl_display_roundtrip(global_display);
|
||||
|
||||
wayland_create_window();
|
||||
return true;
|
||||
}
|
||||
|
@ -231,7 +231,7 @@ bool display_output_x11::shutdown() {
|
||||
}
|
||||
|
||||
inline void propagate_unconsumed_event(XEvent &ev, bool is_consumed) {
|
||||
uint32_t capture_mask = ButtonPressMask | ButtonReleaseMask | ButtonMotionMask;
|
||||
const uint32_t capture_mask = ButtonPressMask | ButtonReleaseMask | ButtonMotionMask;
|
||||
|
||||
// SAFETY: XEvent is a union and all event types this function gets called for
|
||||
// share same alignment and accessed fields share same offsets.
|
||||
|
@ -183,7 +183,7 @@ static void print_version() {
|
||||
#endif
|
||||
#endif /* BUILD_X11 */
|
||||
#ifdef BUILD_WAYLAND
|
||||
<< _(" X11:\n")
|
||||
<< _(" Wayland:\n")
|
||||
#ifdef BUILD_MOUSE_EVENTS
|
||||
<< _(" * Mouse events\n")
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user