aboutsummaryrefslogtreecommitdiff
path: root/customize.rb
diff options
context:
space:
mode:
authornovoid <novoid@users.noreply.github.com>2017-01-23 16:48:04 +0100
committerGitHub <noreply@github.com>2017-01-23 16:48:04 +0100
commite88d7103b3e63fda8ac7512dde8f1de3af77cf23 (patch)
tree6ddc16289d4c201df6617e378018e294544c0ef8 /customize.rb
parentf94baf2aab1d1d62ce748833dbeb184e1b716c73 (diff)
customize.rb: improved usability of selected value
A CROSS usually marks something to be deleted, something which is false, or similar. However, here, the current setting is perceived more clearly when a check-mark (YES) is used instead of a CROSS.
Diffstat (limited to 'customize.rb')
-rwxr-xr-xcustomize.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/customize.rb b/customize.rb
index 3dcbdf1..714e20e 100755
--- a/customize.rb
+++ b/customize.rb
@@ -42,7 +42,7 @@ HEAD
options.each{|description,href,title|
selected = href == cursetting
ret += "<tr><td>"
- ret += CROSS if selected
+ ret += YES if selected
ret += "</td><td class='settingstable' title='#{title}'>"
ret += "<a href='?#{href}'>" unless selected
ret += description