summaryrefslogtreecommitdiffstats
path: root/winit
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-01-06 23:24:12 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-01-06 23:24:12 +0100
commited199e5e8f5bc210ffc923553983e5d3aa6ee5b6 (patch)
tree8a534cd205ba83673d86c150fba52dcc3eb4b651 /winit
parent82ac0e7bf96d7c130108159a8b933ddfb39233fd (diff)
downloadiced-ed199e5e8f5bc210ffc923553983e5d3aa6ee5b6.tar.gz
iced-ed199e5e8f5bc210ffc923553983e5d3aa6ee5b6.tar.bz2
iced-ed199e5e8f5bc210ffc923553983e5d3aa6ee5b6.zip
Fix unintuitive variable name in `winit::program`
Diffstat (limited to 'winit')
-rw-r--r--winit/src/program.rs18
1 files changed, 9 insertions, 9 deletions
diff --git a/winit/src/program.rs b/winit/src/program.rs
index 2bb0f910..95e8a281 100644
--- a/winit/src/program.rs
+++ b/winit/src/program.rs
@@ -1293,30 +1293,30 @@ fn run_action<P, C>(
}
window::Action::SetMinSize(id, size) => {
if let Some(window) = window_manager.get_mut(id) {
- window.raw.set_min_inner_size(size.map(|x| {
+ window.raw.set_min_inner_size(size.map(|size| {
winit::dpi::LogicalSize {
- width: x.width,
- height: x.height,
+ width: size.width,
+ height: size.height,
}
}));
}
}
window::Action::SetMaxSize(id, size) => {
if let Some(window) = window_manager.get_mut(id) {
- window.raw.set_max_inner_size(size.map(|x| {
+ window.raw.set_max_inner_size(size.map(|size| {
winit::dpi::LogicalSize {
- width: x.width,
- height: x.height,
+ width: size.width,
+ height: size.height,
}
}));
}
}
window::Action::SetResizeIncrements(id, increments) => {
if let Some(window) = window_manager.get_mut(id) {
- window.raw.set_resize_increments(increments.map(|x| {
+ window.raw.set_resize_increments(increments.map(|size| {
winit::dpi::LogicalSize {
- width: x.width,
- height: x.height,
+ width: size.width,
+ height: size.height,
}
}));
}