Avoid reloading the navigation panel on dash view

This commit is contained in:
Techlive Zheng 2013-05-24 00:52:58 +08:00 committed by Ignacio Casal Quinteiro
parent 01b8ee2ccc
commit dd1cfbe730

View file

@ -100,7 +100,10 @@ namespace GitgHistory
set
{
d_repository = value;
reload();
if (d_repository != null)
{
reload();
}
}
}