mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-07-11 07:32:51 +02:00
fix(wm): handle serial id on load_monitor_information
This commit is contained in:
@@ -296,7 +296,8 @@ impl WindowsApi {
|
|||||||
|
|
||||||
let display_index_preferences = DISPLAY_INDEX_PREFERENCES.lock();
|
let display_index_preferences = DISPLAY_INDEX_PREFERENCES.lock();
|
||||||
for (index, id) in &*display_index_preferences {
|
for (index, id) in &*display_index_preferences {
|
||||||
if id.eq(m.device_id()) {
|
if m.serial_number_id().as_ref().is_some_and(|sn| sn == id) || id.eq(m.device_id())
|
||||||
|
{
|
||||||
index_preference = Option::from(index);
|
index_preference = Option::from(index);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user