diff options
Diffstat (limited to 'components/script_traits/script_msg.rs')
-rw-r--r-- | components/script_traits/script_msg.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script_traits/script_msg.rs b/components/script_traits/script_msg.rs index 3a4d1618684..7258e2f48cc 100644 --- a/components/script_traits/script_msg.rs +++ b/components/script_traits/script_msg.rs @@ -239,9 +239,9 @@ pub enum ScriptMsg { /// Get Window Informations size and position GetClientWindow(IpcSender<(DeviceIntSize, DeviceIntPoint)>), /// Get the screen size (pixel) - GetScreenSize(IpcSender<(DeviceIntSize)>), + GetScreenSize(IpcSender<DeviceIntSize>), /// Get the available screen size (pixel) - GetScreenAvailSize(IpcSender<(DeviceIntSize)>), + GetScreenAvailSize(IpcSender<DeviceIntSize>), } impl fmt::Debug for ScriptMsg { |