Skip to content

Commit

Permalink
Fix CI (#3775)
Browse files Browse the repository at this point in the history
  • Loading branch information
daxpedda authored Jul 5, 2024
1 parent 1170554 commit 850dd97
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/platform/run_on_demand.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ pub trait EventLoopExtRunOnDemand {
/// # Caveats
/// - This extension isn't available on all platforms, since it's not always possible to return
/// to the caller (specifically this is impossible on iOS and Web - though with the Web
/// backend it is possible to use `EventLoopExtWebSys::spawn()`[^1] more than once instead).
/// backend it is possible to use `EventLoopExtWebSys::spawn()`
#[cfg_attr(not(web_platform), doc = "[^1]")]
/// more than once instead).
/// - No [`Window`] state can be carried between separate runs of the event loop.
///
/// You are strongly encouraged to use [`EventLoop::run_app()`] for portability, unless you
Expand Down
2 changes: 1 addition & 1 deletion src/platform_impl/windows/keyboard.rs
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ impl PartialKeyEventInfo {
// We convert dead keys into their character.
// The reason for this is that `key_without_modifiers` is designed for key-bindings,
// but the US International layout treats `'` (apostrophe) as a dead key and the
// reguar US layout treats it a character. In order for a single binding
// regular US layout treats it a character. In order for a single binding
// configuration to work with both layouts, we forward each dead key as a character.
Key::Dead(k) => {
if let Some(ch) = k {
Expand Down

0 comments on commit 850dd97

Please sign in to comment.