Only build, but don't run tests in MSRV CI (#2558)
* Only build, but don't run tests in MSRV CI Since the MSRV of development dependencies can easily be bumped without it affecting the MSRV of the published version of `winit` * Run clippy on stable Rust instead of MSRV Rust clippy inspects the `rust-version` field, and only suggests changes that conform to that.
This commit is contained in:
parent
bdcbd7d1f9
commit
ce6c6e8c95
18 changed files with 72 additions and 58 deletions
|
|
@ -734,7 +734,7 @@ impl WinitWindow {
|
|||
shared_state_lock.fullscreen = None;
|
||||
|
||||
let maximized = shared_state_lock.maximized;
|
||||
let mask = self.saved_style(&mut *shared_state_lock);
|
||||
let mask = self.saved_style(&mut shared_state_lock);
|
||||
|
||||
drop(shared_state_lock);
|
||||
|
||||
|
|
@ -1191,7 +1191,7 @@ impl WindowExtMacOS for WinitWindow {
|
|||
|
||||
true
|
||||
} else {
|
||||
let new_mask = self.saved_style(&mut *shared_state_lock);
|
||||
let new_mask = self.saved_style(&mut shared_state_lock);
|
||||
self.set_style_mask_async(new_mask);
|
||||
shared_state_lock.is_simple_fullscreen = false;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue