summaryrefslogtreecommitdiff
path: root/apps/root_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/root_menu.c')
-rw-r--r--apps/root_menu.c16
1 files changed, 10 insertions, 6 deletions
diff --git a/apps/root_menu.c b/apps/root_menu.c
index 80a84d9d49..95524e1ba3 100644
--- a/apps/root_menu.c
+++ b/apps/root_menu.c
@@ -241,15 +241,19 @@ static int browser(void* param)
241 { 241 {
242 if (lang_is_rtl()) 242 if (lang_is_rtl())
243 { 243 {
244 splashf(0, "[%d/%d] %s", stat->commit_step, 244 splash_progress(stat->commit_step,
245 tagcache_get_max_commit_step(), 245 tagcache_get_max_commit_step(),
246 str(LANG_TAGCACHE_INIT)); 246 "[%d/%d] %s", stat->commit_step,
247 tagcache_get_max_commit_step(),
248 str(LANG_TAGCACHE_INIT));
247 } 249 }
248 else 250 else
249 { 251 {
250 splashf(0, "%s [%d/%d]", str(LANG_TAGCACHE_INIT), 252 splash_progress(stat->commit_step,
251 stat->commit_step, 253 tagcache_get_max_commit_step(),
252 tagcache_get_max_commit_step()); 254 "%s [%d/%d]", str(LANG_TAGCACHE_INIT),
255 stat->commit_step,
256 tagcache_get_max_commit_step());
253 } 257 }
254 } 258 }
255 else 259 else