mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 12:55:58 +01:00
tinywl: remove redundant create output global call
This commit is contained in:
parent
ab4dc1636c
commit
25d0d1be3a
1 changed files with 6 additions and 6 deletions
|
@ -672,13 +672,13 @@ static void server_new_output(struct wl_listener *listener, void *data) {
|
||||||
/* Adds this to the output layout. The add_auto function arranges outputs
|
/* Adds this to the output layout. The add_auto function arranges outputs
|
||||||
* from left-to-right in the order they appear. A more sophisticated
|
* from left-to-right in the order they appear. A more sophisticated
|
||||||
* compositor would let the user configure the arrangement of outputs in the
|
* compositor would let the user configure the arrangement of outputs in the
|
||||||
* layout. */
|
* layout.
|
||||||
|
*
|
||||||
|
* The output layout utility automatically adds a wl_output global to the
|
||||||
|
* display, which Wayland clients can see to find out information about the
|
||||||
|
* output (such as DPI, scale factor, manufacturer, etc).
|
||||||
|
*/
|
||||||
wlr_output_layout_add_auto(server->output_layout, wlr_output);
|
wlr_output_layout_add_auto(server->output_layout, wlr_output);
|
||||||
|
|
||||||
/* Creating the global adds a wl_output global to the display, which Wayland
|
|
||||||
* clients can see to find out information about the output (such as
|
|
||||||
* DPI, scale factor, manufacturer, etc). */
|
|
||||||
wlr_output_create_global(wlr_output);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void xdg_surface_map(struct wl_listener *listener, void *data) {
|
static void xdg_surface_map(struct wl_listener *listener, void *data) {
|
||||||
|
|
Loading…
Reference in a new issue