mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
GDirectoryModel: prevent sorting by icons.
This commit is contained in:
parent
823d5d097b
commit
405d7ddec8
Notes:
sideshowbarker
2024-07-19 17:45:07 +09:00
Author: https://github.com/ignas-sa
Commit: 405d7ddec8
Pull-request: https://github.com/SerenityOS/serenity/pull/442
Reviewed-by: https://github.com/awesomekling
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ GModel::ColumnMetadata GDirectoryModel::column_metadata(int column) const
|
|||
{
|
||||
switch (column) {
|
||||
case Column::Icon:
|
||||
return { 16, TextAlignment::Center };
|
||||
return { 16, TextAlignment::Center, false };
|
||||
case Column::Name:
|
||||
return { 120, TextAlignment::CenterLeft };
|
||||
case Column::Size:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue