mirror of
https://github.com/wez/wezterm.git
synced 2024-12-23 21:32:13 +03:00
term: fix longstanding bug with imagecat
Sometimes, I'd notice that imgcat would have a weird aspect. I stumbled across the root cause while debugging something else: the order of the pixel width and height was flipped here.
This commit is contained in:
parent
fd533a6944
commit
8649056ac0
@ -75,8 +75,8 @@ impl Terminal {
|
||||
state: TerminalState::new(
|
||||
physical_rows,
|
||||
physical_cols,
|
||||
pixel_height,
|
||||
pixel_width,
|
||||
pixel_height,
|
||||
config,
|
||||
term_program,
|
||||
term_version,
|
||||
|
Loading…
Reference in New Issue
Block a user