fn load_first_existing_cursor()

in src/platform_impl/linux/x11/util/cursor.rs [53:61]


    fn load_first_existing_cursor(&self, names: &[&[u8]]) -> ffi::Cursor {
        for name in names.iter() {
            let xcursor = self.load_cursor(name);
            if xcursor != 0 {
                return xcursor;
            }
        }
        0
    }