1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-07-28 09:24:24 +02:00

Fixed options/settings handling isses.

This commit is contained in:
2016-12-06 21:02:44 +01:00
parent 4cf027df58
commit 34e48199b2
4 changed files with 56 additions and 23 deletions

View File

@ -36,3 +36,11 @@ void Palette::reset()
{
_state = _h;
}
QDebug operator<<(QDebug dbg, const Palette &palette)
{
dbg.nospace() << "Palette(" << palette.color() << ", " << palette.shift()
<< ")";
return dbg.maybeSpace();
}