[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

[PATCH] RapidSVN first impressions, and a small fix

From: Garrett Rooney <rooneg_at_electricjellyfish.net>
Date: 2002-07-26 03:29:05 CEST

so i just played around with RapidSVN a bit, and it looks pretty neat.

first problem was that with the gtk version of wxWindows, the columns
in the main window were all starting at 0 width. here's a quick patch
to fix that.

Index: ./rapidsvn.cpp
===================================================================
--- ./rapidsvn.cpp
+++ ./rapidsvn.cpp Thu Jul 25 21:21:41 2002
@@ -350,6 +350,12 @@
 
         itemCol.m_text = "Prop Status";
         m_listCtrl->InsertColumn(4, itemCol);
+
+ m_listCtrl->SetColumnWidth(0,150);
+ m_listCtrl->SetColumnWidth(1,75);
+ m_listCtrl->SetColumnWidth(2,75);
+ m_listCtrl->SetColumnWidth(3,75);
+ m_listCtrl->SetColumnWidth(4,75);
 }
 
 void VSvnFrame::OnQuit(wxCommandEvent& WXUNUSED(event))

other first impressions: the fact that folders don't show up in the
main window (other than those that start with a ".", which i assume is
a bug) confused me. i think most people will expect them to show up
there. similarly, i think it would be more intuitive for the file
tree on the left to just have the machine's file tree, rather than
having it split up into 'The Computer', 'User', etc. it just seems
strange to me.

in short though, it's really cool, and i can't wait to see what else
you guys have in store for it. i was surprised (judging from how complete
much of it felt) that i had to go back to the command line version to
generate the diff for my change ;-)

-garrett

-- 
garrett rooney                    Remember, any design flaw you're 
rooneg@electricjellyfish.net      sufficiently snide about becomes  
http://electricjellyfish.net/     a feature.       -- Dan Sugalski
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Fri Jul 26 03:29:45 2002

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.