mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-18 13:55:23 -05:00
Refactor platform-specific code
This commit is contained in:
parent
a9397727d2
commit
a54cc4ec60
1 changed files with 2 additions and 4 deletions
|
@ -175,7 +175,7 @@ fn run(mut config: Config, options: &cli::Options) -> Result<(), Box<Error>> {
|
|||
#[cfg(windows)]
|
||||
let resize_handle = unsafe { &mut *pty.winpty.get() };
|
||||
#[cfg(not(windows))]
|
||||
let mut resize_handle = pty.fd.as_raw_fd();
|
||||
let resize_handle = &mut pty.fd.as_raw_fd();
|
||||
|
||||
// Create the pseudoterminal I/O loop
|
||||
//
|
||||
|
@ -246,14 +246,12 @@ fn run(mut config: Config, options: &cli::Options) -> Result<(), Box<Error>> {
|
|||
if terminal_lock.needs_draw() {
|
||||
// Try to update the position of the input method editor
|
||||
display.update_ime_position(&terminal_lock);
|
||||
|
||||
// Handle pending resize events
|
||||
//
|
||||
// The second argument is a list of types that want to be notified
|
||||
// of display size changes.
|
||||
#[cfg(windows)]
|
||||
display.handle_resize(&mut terminal_lock, &config, &mut [resize_handle, &mut processor]);
|
||||
#[cfg(not(windows))]
|
||||
display.handle_resize(&mut terminal_lock, &config, &mut [&mut resize_handle, &mut processor]);
|
||||
|
||||
drop(terminal_lock);
|
||||
|
||||
|
|
Loading…
Reference in a new issue