Skip to content

Commit

Permalink
Fix device window horizontal overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
danielfm committed Jan 14, 2025
1 parent db5f8ac commit b768a65
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions smudge-device-select.el
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@
(defun smudge-device-set-list-format ()
"Configures the column data for the device view."
(setq tabulated-list-format
(vector `("Device" ,(- (window-width) 22) t)
'("Active" 12 t)
'("Volume" 8 nil :right-align t))))
(vector `("Device" ,(- (window-width) 24) nil)
'("Active" 12 nil)
'("Volume" 8 nil :right-align nil))))

(defun smudge-device-get-device-name (device)
"Return the name from the given DEVICE hash."
Expand Down

0 comments on commit b768a65

Please sign in to comment.