Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -899,7 +899,7 @@ EX shared_ptr<custom_parameter> param_colortable(colortable& val, const paramete
u->custom_save = [&val] {
bool first = true;
string str;
for(auto v: val) { if(first) first = false; else str += ","; str += itsh(v); }
for(auto v: val) { if(first) first = false; else str += ","; str += itsh6(v); }
return str;
};
u->custom_do_save = [dft, &val] { return val != dft; };
Expand Down
Loading