[Explorer] Increase column widths to reduce resizing (#142)

A small quality-of-life thing.
This commit is contained in:
F K 2024-01-30 20:48:55 -05:00 committed by GitHub
commit f4759072d2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,16 +4,16 @@ namespace Observatory.Explorer
{
public class ExplorerUIResults
{
[ColumnSuggestedWidth(150)]
[ColumnSuggestedWidth(300)]
public string Time { get; set; }
[ColumnSuggestedWidth(150)]
[ColumnSuggestedWidth(350)]
public string BodyName { get; set; }
[ColumnSuggestedWidth(200)]
[ColumnSuggestedWidth(400)]
public string Description { get; set; }
[ColumnSuggestedWidth(200)]
[ColumnSuggestedWidth(600)]
public string Details { get; set; }
}
}