We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b07a245 commit 7068c55Copy full SHA for 7068c55
1 file changed
lambda/src/core/render/mod.rs
@@ -329,8 +329,9 @@ impl RenderContext {
329
.with_size(width, height)
330
.build(&self.gpu, &self.surface);
331
Rc::get_mut(&mut self.surface)
332
- .expect("Failed to acquire the surface to resize during")
333
- .apply_swapchain(&self.gpu, swapchain, 1_000_000_000);
+ .expect("Failed to acquire the surface while attempting to resize.")
+ .apply_swapchain(&self.gpu, swapchain, 1_000_000_000)
334
+ .expect("Failed to apply the swapchain to the surface while attempting to resize.");
335
}
336
337
0 commit comments