1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 23:47:45 +00:00

Everywhere: Move Base/res/terminal-colors to Base/res/color-schemes

This commit is contained in:
implicitfield 2022-12-02 18:11:26 +02:00 committed by Andrew Kaster
parent 534f3faa2f
commit 4aec8491d6
19 changed files with 6 additions and 5 deletions

View file

@ -121,7 +121,7 @@ TerminalSettingsViewWidget::TerminalSettingsViewWidget()
// this should cause no problems.
static Vector<DeprecatedString> color_scheme_names;
color_scheme_names.clear();
Core::DirIterator iterator("/res/terminal-colors", Core::DirIterator::SkipParentAndBaseDir);
Core::DirIterator iterator("/res/color-schemes", Core::DirIterator::SkipParentAndBaseDir);
while (iterator.has_next()) {
auto path = iterator.next_path();
color_scheme_names.append(path.replace(".ini"sv, ""sv, ReplaceMode::FirstOnly));