mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-10-18 19:45:58 +08:00
updated descriptions
This commit is contained in:
parent
26b5a6c433
commit
ac6e222bf6
1 changed files with 8 additions and 8 deletions
|
@ -157,7 +157,7 @@ let commands = {
|
|||
},
|
||||
{
|
||||
id: "changeTimerStyle",
|
||||
display: "Change timer style...",
|
||||
display: "Change timer/progress style...",
|
||||
subgroup: true,
|
||||
exec: () => {
|
||||
currentCommands.push(commandsTimerStyle);
|
||||
|
@ -166,7 +166,7 @@ let commands = {
|
|||
},
|
||||
{
|
||||
id: "changeTimerColor",
|
||||
display: "Change timer color...",
|
||||
display: "Change timer/progress color...",
|
||||
subgroup: true,
|
||||
exec: () => {
|
||||
currentCommands.push(commandsTimerColor);
|
||||
|
@ -175,7 +175,7 @@ let commands = {
|
|||
},
|
||||
{
|
||||
id: "changeTimerOpacity",
|
||||
display: "Change timer opacity...",
|
||||
display: "Change timer/progress opacity...",
|
||||
subgroup: true,
|
||||
exec: () => {
|
||||
currentCommands.push(commandsTimerOpacity);
|
||||
|
@ -290,7 +290,7 @@ let commandsCaretStyle = {
|
|||
};
|
||||
|
||||
let commandsTimerStyle = {
|
||||
title: "Change timer...",
|
||||
title: "Change timer/progress style...",
|
||||
list: [
|
||||
{
|
||||
id: "setTimerStyleBar",
|
||||
|
@ -310,7 +310,7 @@ let commandsTimerStyle = {
|
|||
};
|
||||
|
||||
let commandsTimerColor = {
|
||||
title: "Change timer color...",
|
||||
title: "Change timer/progress color...",
|
||||
list: [
|
||||
{
|
||||
id: "setTimerColorBlack",
|
||||
|
@ -350,21 +350,21 @@ let commandsTimerOpacity = {
|
|||
id: "setTimerOpacity.25",
|
||||
display: ".25",
|
||||
exec: () => {
|
||||
setTimerOpacity(.25);
|
||||
setTimerOpacity(0.25);
|
||||
},
|
||||
},
|
||||
{
|
||||
id: "setTimerOpacity.5",
|
||||
display: ".5",
|
||||
exec: () => {
|
||||
setTimerOpacity(.5);
|
||||
setTimerOpacity(0.5);
|
||||
},
|
||||
},
|
||||
{
|
||||
id: "setTimerOpacity.75",
|
||||
display: ".75",
|
||||
exec: () => {
|
||||
setTimerOpacity(.75);
|
||||
setTimerOpacity(0.75);
|
||||
},
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue