-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DeskTop: Fix initial window size for list views
Investigating #792 turned up a glitch in computing the bounding box for list views. Rather than calculating the actual width of all lines, a fixed width is used to ensure long dates fit. But this was applied (1) after the bounding box was inflated and (2) by assigning to a right edge rather than as a width. This ensures that when a window is opened in list view (which happens if the parent window is a list view) then the new window's horizontal scrollbars will be inactive.
- Loading branch information
1 parent
a3923e2
commit 12e162b
Showing
3 changed files
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12e162b
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great!