aardappel / treesheets

TreeSheets : Free Form Data Organizer (see strlen.com/treesheets)
zlib License
2.49k stars 184 forks source link

Import and export XML with color attributes in hexadecimal representation #650

Closed tobiolo closed 1 month ago

tobiolo commented 1 month ago

Due to the autodetection of the representation, std::stoi will convert both the decimal and the hexadecimal representation, thus preserving backwards compatibility.

tobiolo commented 1 month ago

It will not use a leading # as used in web, but 0x. I think it is still a good compromise because the leading 0x leads to the correct detection, it is still more human readable than the decimal representation and using the autodetection enables us to still read the former decimal representation correctly.

aardappel commented 1 month ago

Yup agree that is more elegant :)

tobiolo commented 1 month ago

Thanks for your review and feedback! ☺️