Skip to content

Commit

Permalink
Change the border color in project list
Browse files Browse the repository at this point in the history
  • Loading branch information
crsib committed Feb 1, 2024
1 parent 28d798c commit 73d284d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/mod-cloud-audiocom/ui/ProjectsListDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class ProjectsListDialog::ProjectsTableData final : public wxGridTableBase

int GetColWidth(int col) const
{
static const int colWidths[] = { 400, 100 };
static const int colWidths[] = { 400, 150 };
return col < 2 ? colWidths[col] : 0;
}

Expand Down Expand Up @@ -201,6 +201,7 @@ ProjectsListDialog::ProjectsListDialog(wxWindow* parent, AudacityProject* projec
mProjectsTable = safenew wxGrid { this, wxID_ANY };
mProjectsTableData = safenew ProjectsTableData { *this, 7 };
mProjectsTable->SetDefaultRowSize(32);
mProjectsTable->SetGridLineColour(mProjectsTable->GetDefaultCellBackgroundColour());
mProjectsTable->SetDefaultCellAlignment(wxALIGN_LEFT, wxALIGN_CENTER);
mProjectsTable->SetTable(mProjectsTableData, true);
mProjectsTable->SetRowLabelSize(1);
Expand Down

0 comments on commit 73d284d

Please sign in to comment.