event log: add some debug rules

This commit is contained in:
Hylke Bons 2012-01-25 19:49:56 +00:00
parent f892fd9c11
commit 0cb6cc5d20

View file

@ -175,10 +175,13 @@ namespace SparkleShare {
this.combo_box.GetActiveIter (out iter);
string selection = (string) this.combo_box.Model.GetValue (iter, 0);
if (selection.Equals (_("All Folders")))
if (selection.Equals (_("All Folders"))) {
Console.WriteLine (">>> if statement");
Controller.SelectedFolder = null;
else
} else {
Console.WriteLine (">>> else statement: " + selection);
Controller.SelectedFolder = selection;
}
};
this.layout_horizontal.BorderWidth = 9;