fix comma in pause layers and delete in input fields
This commit is contained in:
parent
8a51753e1b
commit
8b7fa6ebab
3 changed files with 6 additions and 4 deletions
|
|
@ -1443,7 +1443,7 @@ var gs_kiri_init = exports;
|
|||
zHopDistance: UC.newInput(LANG.ad_zhop_s, {title:LANG.ad_zhop_l, bound:UC.bound(0,3.0), convert:UC.toFloat, modes:FDM, expert:true}),
|
||||
antiBacklash: UC.newInput(LANG.ad_abkl_s, {title:LANG.ad_abkl_l, bound:UC.bound(0,3), convert:UC.toInt, modes:FDM, expert:true}),
|
||||
// detectThinWalls: UC.newBoolean("thin wall fill", onBooleanClick, {title: "detect and fill thin openings\nbetween shells walls", modes:FDM, expert:true})
|
||||
gcodePauseLayers: UC.newInput(LANG.ag_paws_s, {title:LANG.ag_paws_l, modes:FDM, expert:true}),
|
||||
gcodePauseLayers: UC.newInput(LANG.ag_paws_s, {title:LANG.ag_paws_l, modes:FDM, expert:true, comma:true}),
|
||||
outputLayerRetract: UC.newBoolean(LANG.ad_lret_s, onBooleanClick, {title:LANG.ad_lret_l, modes:FDM, expert:true}),
|
||||
|
||||
// SLA
|
||||
|
|
|
|||
|
|
@ -421,11 +421,13 @@ var gs_moto_ui = exports;
|
|||
key === '.' ||
|
||||
key === '-' ||
|
||||
key === 'Backspace' ||
|
||||
key === 'Delete' ||
|
||||
key === 'ArrowLeft' ||
|
||||
key === 'ArrowRight' ||
|
||||
key === 'Tab' ||
|
||||
event.metaKey ||
|
||||
event.ctrlKey
|
||||
event.ctrlKey ||
|
||||
(key === ',' && options.comma)
|
||||
) {
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -113,8 +113,8 @@ kiri.lang['en-us'] = {
|
|||
op_xprt_l: "enable expert options",
|
||||
op_dark_s: "dark mode",
|
||||
op_dark_l: "dark mode interface",
|
||||
op_comp_s: "compact",
|
||||
op_comp_l: "compact user interface",
|
||||
op_comp_s: "compact ui",
|
||||
op_comp_l: "compact user interface\nbetter for small screens\nand tablets",
|
||||
op_show_s: "show origin",
|
||||
op_show_l: "show device or process origin",
|
||||
op_alig_s: "align top",
|
||||
|
|
|
|||
Loading…
Reference in a new issue