--- src/ui/events.cpp.orig Thu Nov 13 15:00:15 2003 +++ src/ui/events.cpp Thu Nov 13 15:13:07 2003 @@ -584,10 +584,10 @@ void frmMain::execSelChange(wxTreeItemId item, bool currentNode) { properties->ClearAll(); - properties->AddColumn(_("Properties")); + properties->AddColumn(_("Properties"), 500); properties->InsertItem(0, _("No properties are available for the current selection"), PGICON_PROPERTY); statistics->ClearAll(); - statistics->AddColumn(_("Statistics")); + statistics->AddColumn(_("Statistics"), 500); statistics->InsertItem(0, _("No statistics are available for the current selection"), PGICON_STATISTICS); sqlPane->Clear(); --- src/ui/frmMain.cpp.orig Thu Nov 13 15:03:09 2003 +++ src/ui/frmMain.cpp Thu Nov 13 15:13:31 2003 @@ -345,13 +345,13 @@ properties->SetImageList(images, wxIMAGE_LIST_SMALL); // Add the property view columns - properties->AddColumn(_("Properties")); + properties->AddColumn(_("Properties"), 500); properties->InsertItem(0, _("No properties are available for the current selection"), PGICON_PROPERTY); statistics->SetImageList(images, wxIMAGE_LIST_SMALL); // Add the statistics view columns & set the colour - statistics->AddColumn(_("Statistics")); + statistics->AddColumn(_("Statistics"), 500); statistics->InsertItem(0, _("No statistics are available for the current selection"), PGICON_STATISTICS); wxColour background;