Skip to content

Commit

Permalink
DeskTop: re-order list view columns
Browse files Browse the repository at this point in the history
Move size to be the second column. Since name is left-aligned and size
is right-aligned, putting these columns next to each other combines
the whitespace, rather than having lots of whitespace in the middle of
the columns.
  • Loading branch information
inexorabletash committed Mar 3, 2024
1 parent 9ab098d commit f9b2a59
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ Project Page: https://github.com/a2stuff/a2d
* Add checkbox to lock/unlock file in Get Info dialog. (([#149](https://github.com/a2stuff/a2d/issues/149))
* Remove Special > Lock and Special > Unlock commands.
* Show icon for locked files in list views.
* Reorder columns in list views.
* Allow selection to remain in inactive windows.
* Fix off-by-one in used/free values in window headers.
* Fix updating of window headers following File > New Folder.
Expand Down
6 changes: 3 additions & 3 deletions desktop/res.s
Original file line number Diff line number Diff line change
Expand Up @@ -791,9 +791,9 @@ win_view_by_table:
.res kMaxDeskTopWindows, 0

DEFINE_POINT pos_col, 0, 0
kColLock = 136
kColType = 146
kColSize = 216 ; right-aligned
kColSize = 180 ; right-aligned
kColLock = 186
kColType = 200
kColDate = 231

;;; Scratch buffer visible to MGTK, primarily used for list view columns.
Expand Down

0 comments on commit f9b2a59

Please sign in to comment.