hack fix to crash

This commit is contained in:
Hylke Bons 2010-05-04 22:06:16 +01:00
parent 6fdf6fdf11
commit a6f4d1c2ef
2 changed files with 5 additions and 5 deletions

View file

@ -24,4 +24,4 @@ uninstall:
rm ~/.config/autostart/sparkleshare.desktop
clean:
rm src/sparkleshare.exe
rm SparkleShare/bin/Debug/SparkleShare.exe

View file

@ -64,7 +64,7 @@ namespace SparkleShare {
LayoutVerticalLeft = CreateReposList ();
LayoutVerticalLeft.BorderWidth = 12;
LayoutVerticalRight = CreateDetailedView (Repositories [1]);
LayoutVerticalRight = CreateDetailedView (Repositories [0]);
LayoutHorizontal.PackStart (LayoutVerticalLeft, false, false, 0);
LayoutHorizontal.PackStart (LayoutVerticalRight, true, true, 12);
@ -94,7 +94,7 @@ namespace SparkleShare {
// Fetch remote changes every 20 seconds
Timer RedrawTimer = new Timer ();
/* Timer RedrawTimer = new Timer ();
RedrawTimer.Interval = 5000;
RedrawTimer.Elapsed += delegate {
@ -115,7 +115,7 @@ namespace SparkleShare {
};
RedrawTimer.Start();
*/
Add (LayoutVertical);
}
@ -503,4 +503,4 @@ namespace SparkleShare {
}
}