diff --git a/wx/TODO.txt b/wx/TODO.txt new file mode 100644 index 000000000..0351c86bd --- /dev/null +++ b/wx/TODO.txt @@ -0,0 +1,4 @@ +peers column is awkward to read +peers column doesn't sort +pulse doesn't resort items in the torrent list +resorting the torrent list causes a 'blink', which makes pulsing resort unpleasant diff --git a/wx/torrent-list.cc b/wx/torrent-list.cc index 5425bcff0..a664454f2 100644 --- a/wx/torrent-list.cc +++ b/wx/torrent-list.cc @@ -396,7 +396,7 @@ TorrentListCtrl :: Compare( long item1, long item2, long sortData ) ret = 0; break; - case COL_DOWNLOAD_SPEED: break; + case COL_DOWNLOAD_SPEED: if( sa->rateDownload < sb->rateDownload ) ret = -1; else if( sa->rateDownload > sb->rateDownload ) diff --git a/wx/xmission.cc b/wx/xmission.cc index da6f407f7..fd561e4b9 100755 --- a/wx/xmission.cc +++ b/wx/xmission.cc @@ -379,16 +379,16 @@ bool MyApp::OnInit() if( cmdParser.Parse ( ) ) return false; - const wxString name = wxString::Format( _T("MyApp-%s"), wxGetUserId().c_str()); + const wxString name = wxString::Format( _T("Xmission-%s"), wxGetUserId().c_str()); myChecker = new wxSingleInstanceChecker( name ); if ( myChecker->IsAnotherRunning() ) { - wxLogError(_("An instance of Transmission is already running.")); + wxLogError(_("An instance of Xmission is already running.")); return false; } const bool paused = cmdParser.Found( _("p") ); - MyFrame * frame = new MyFrame( _T("Xmission"), + MyFrame * frame = new MyFrame( _("Xmission"), wxPoint(50,50), wxSize(900,600), paused);