This commit is contained in:
Hylke Bons 2012-01-25 21:21:44 +00:00
parent a66a373c5b
commit 82989fbd2a

View file

@ -176,13 +176,10 @@ namespace SparkleShare {
string selection = (string) this.combo_box.Model.GetValue (iter, 0);
TreePath path = this.combo_box.Model.GetPath (iter);
if (path.Indices [0] == 0) {
Console.WriteLine (">>> if statement");
if (path.Indices [0] == 0);
Controller.SelectedFolder = null;
} else {
Console.WriteLine (">>> else statement: " + path.Indices [0]);
else
Controller.SelectedFolder = selection;
}
};
this.layout_horizontal.BorderWidth = 9;