fix: Remove accidental reference to x11 only feature in use statement in app.rs
This commit is contained in:
parent
00bb0b4b0b
commit
5b52cd927a
1 changed files with 1 additions and 2 deletions
|
@ -15,7 +15,6 @@ use std::collections::{HashMap, HashSet};
|
|||
use tokio::sync::mpsc::UnboundedSender;
|
||||
use yuck::{
|
||||
config::{
|
||||
backend_window_options::WindowType,
|
||||
script_var_definition::ScriptVarDefinition,
|
||||
window_geometry::{AnchorPoint, WindowGeometry},
|
||||
},
|
||||
|
@ -373,7 +372,7 @@ fn initialize_window(
|
|||
{
|
||||
if let Some(geometry) = window_def.geometry {
|
||||
let _ = apply_window_position(geometry, monitor_geometry, &window);
|
||||
if window_def.backend_options.window_type != WindowType::Normal {
|
||||
if window_def.backend_options.window_type != yuck::config::backend_window_options::WindowType::Normal {
|
||||
window.connect_configure_event(move |window, _| {
|
||||
let _ = apply_window_position(geometry, monitor_geometry, window);
|
||||
false
|
||||
|
|
Loading…
Add table
Reference in a new issue