summaryrefslogtreecommitdiffstats
path: root/src/options/theme.rs
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2021-04-23 13:20:16 -0400
committerGitHub <noreply@github.com>2021-04-23 13:20:16 -0400
commit598c2e3f1498a7e590ed764de7026cfed69ded71 (patch)
treeeaead594f0486a8085931589a0afa8be07cd2591 /src/options/theme.rs
parent535ba79da0456bb4c3c1e20bb8dfb6456407b12c (diff)
Deprecate --24-bit-color, replacing with --true-color (#571)
Fixes #567
Diffstat (limited to 'src/options/theme.rs')
-rw-r--r--src/options/theme.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/options/theme.rs b/src/options/theme.rs
index eb1fd50f..ef46dbea 100644
--- a/src/options/theme.rs
+++ b/src/options/theme.rs
@@ -188,10 +188,10 @@ mod tests {
}
let is_true_color = true;
if is_true_color {
- args.push("--24-bit-color");
+ args.push("--true-color");
args.push("always");
} else {
- args.push("--24-bit-color");
+ args.push("--true-color");
args.push("never");
}
match mode {