MGR: Small efficiency improvement in Simple View,

This commit is contained in:
Charlie Fenton 2014-01-09 04:49:30 -08:00
parent 2dea4866c8
commit 9608ab1645
1 changed files with 3 additions and 1 deletions

View File

@ -417,7 +417,9 @@ numSlides = 0;
if (!m_bHasBeenDrawn) {
m_bHasBeenDrawn = true;
SetDescriptionText();
if (numSlides <= 0) {
SetDescriptionText();
}
}
}