mirror of
https://github.com/stenzek/duckstation.git
synced 2025-06-28 14:20:30 +00:00
Qt: Avoid truncating Serial column in game list view on macOS
This commit is contained in:
parent
5dc55bb4a1
commit
00330ca391
@ -1614,7 +1614,11 @@ void GameListListView::resizeColumnsToFit()
|
||||
{
|
||||
QtUtils::ResizeColumnsForTableView(this, {
|
||||
45, // type
|
||||
80, // code
|
||||
#ifdef __APPLE__
|
||||
95, // serial
|
||||
#else
|
||||
80, // serial
|
||||
#endif
|
||||
-1, // title
|
||||
-1, // file title
|
||||
200, // developer
|
||||
@ -1641,7 +1645,7 @@ void GameListListView::loadColumnVisibilitySettings()
|
||||
{
|
||||
static constexpr std::array<bool, GameListModel::Column_Count> DEFAULT_VISIBILITY = {{
|
||||
true, // type
|
||||
true, // code
|
||||
true, // serial
|
||||
true, // title
|
||||
false, // file title
|
||||
false, // developer
|
||||
|
Loading…
x
Reference in New Issue
Block a user