From 019bae27897903b9ffb65b545f83b28c181c075b Mon Sep 17 00:00:00 2001 From: gambas Date: Fri, 8 Feb 2019 00:42:20 +0100 Subject: [PATCH] Translation dialog: Deleting a translation correctly removes it from the translation combo box. [DEVELOPMENT ENVIRONMENT] * BUG: Translation dialog: Deleting a translation correctly removes it from the translation combo box. --- app/src/gambas3/.src/Translation/FTranslate.class | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/gambas3/.src/Translation/FTranslate.class b/app/src/gambas3/.src/Translation/FTranslate.class index 58c81f89d..4f906d22d 100644 --- a/app/src/gambas3/.src/Translation/FTranslate.class +++ b/app/src/gambas3/.src/Translation/FTranslate.class @@ -687,6 +687,7 @@ Public Sub mnuDelete_Click() SaveTranslate(True) cvwLang.Remove($sLang) + cmbLang.Remove(cmbLang.Index) SetLang() End