Giter Site home page Giter Site logo

Comments (5)

amrbashir avatar amrbashir commented on May 18, 2024

you need to pair it with .focused(false) otherwise the window will be created with focus and will be placed on top until it loses focus

from tauri.

Charlie-XIAO avatar Charlie-XIAO commented on May 18, 2024

Thanks! That indeed works, but the window still flickers upon creation. Does that have a solution?

from tauri.

amrbashir avatar amrbashir commented on May 18, 2024

Not sure what flicker you mean, can you show a video?

from tauri.

Charlie-XIAO avatar Charlie-XIAO commented on May 18, 2024

Sorry my screen recording software can only capture one app so I have to use my phone:

screen-recording.mp4

from tauri.

Charlie-XIAO avatar Charlie-XIAO commented on May 18, 2024

Sorry @amrbashir, .focused(false) does solve the issue in the snippet above. I've just narrowed down my app and found that to reproduce the "flickering" problem we further need to set .maximized(true). Note that .focused(false) further causes problems when we call .set_ignore_cursor_events(true/false). Please try the following:

fn main() {
    tauri::Builder::default()
        .setup(|app| {
            let main = WebviewWindowBuilder::new(app, "main", WebviewUrl::App("index.html".into()))
                .maximized(true) // causes the flickering
                .always_on_bottom(true)
                .focused(false)
                .build()?;
            sleep(Duration::from_secs(2));
            main.set_ignore_cursor_events(true)?; // some unexpected motions
            sleep(Duration::from_secs(2));
            main.set_ignore_cursor_events(false)?; // same as above
            Ok(())
        })
        .plugin(tauri_plugin_shell::init())
        .invoke_handler(tauri::generate_handler![greet])
        .run(tauri::generate_context!())
        .expect("error while running tauri application");
}

Please let me know if you cannot reproduce.

from tauri.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.