From 9e016c4791853ae0bfb79d5758c9136842feda1f Mon Sep 17 00:00:00 2001 From: Dominik Riebeling Date: Sun, 2 Oct 2011 14:36:38 +0000 Subject: [PATCH] Update cache information after translation change. Since a translation change can affect the locale the locale-dependent strings need to be refreshed explicitly. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30634 a1c6a512-1295-4272-9138-f99709370657 --- rbutil/rbutilqt/configure.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/rbutil/rbutilqt/configure.cpp b/rbutil/rbutilqt/configure.cpp index d1a5faee24..e20f6070eb 100644 --- a/rbutil/rbutilqt/configure.cpp +++ b/rbutil/rbutilqt/configure.cpp @@ -903,6 +903,7 @@ void Config::changeEvent(QEvent *e) { if(e->type() == QEvent::LanguageChange) { ui.retranslateUi(this); + updateCacheInfo(ui.cachePath->text()); } else { QWidget::changeEvent(e); }