From efba769fa3997f2917d54a29b2b24872bf607bc5 Mon Sep 17 00:00:00 2001 From: sandeep <107111616+sandeepB3@users.noreply.github.com> Date: Thu, 21 Mar 2024 03:24:26 +0530 Subject: [PATCH] fixed unused import warning in minibrowser (#31797) Signed-off-by: Sandeep Pillai Co-authored-by: Sandeep Pillai --- ports/servoshell/minibrowser.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/servoshell/minibrowser.rs b/ports/servoshell/minibrowser.rs index b7996545232..e8f6262b6e8 100644 --- a/ports/servoshell/minibrowser.rs +++ b/ports/servoshell/minibrowser.rs @@ -7,7 +7,7 @@ use std::num::NonZeroU32; use std::sync::Arc; use std::time::Instant; -use egui::{CentralPanel, Frame, InnerResponse, Key, Modifiers, PaintCallback, TopBottomPanel}; +use egui::{CentralPanel, Frame, Key, Modifiers, PaintCallback, TopBottomPanel}; use egui_glow::CallbackFn; use egui_winit::EventResponse; use euclid::{Length, Point2D, Scale};