control decimal dot visibility

This commit is contained in:
Peli de Halleux 2015-05-18 16:32:58 -07:00
Родитель 6bc82ef4ce
Коммит 5e46d803e9
3 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -1617,7 +1617,9 @@ module TDev
var numAdd = this.keyBlock(ph ? 3 : 4, 1);
numAdd[0].setText("0", "", this.insertFn);
numAdd[1].setText(".", lf("decimal dot"), this.insertFn);
if (TheEditor.widgetEnabled("integerNumbers"))
numAdd[1].clear()
else numAdd[1].setText(".", lf("decimal dot"), this.insertFn);
numAdd[2].setText("-", lf("negation"), this.insertFn);
if (!ph) {

Просмотреть файл

@ -269,6 +269,7 @@ module TDev.Browser {
forceMainAsAction: true,
singleReturnValue: true,
librariesSection: true,
integerNumbers: true,
}
},
},

Просмотреть файл

@ -34,6 +34,7 @@ module TDev.Cloud {
changeSkillLevel?: boolean;
mainAlwaysAction?: boolean;
singleReturnValue?: boolean;
integerNumbers?: boolean;
// features
actionSettings?: boolean;