1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-25 18:30:07 +00:00

Attempt but retreat from proper treatment of width.

This commit is contained in:
Thomas Harte 2023-03-18 23:13:06 -04:00
parent e66a92d6cb
commit 235d54bb67

View File

@ -252,10 +252,11 @@ template <bool logical, bool include_source> struct Rectangle: public Command {
width_ = context.size.v[0];
if(!width_) {
// TODO: this should mean 'maximal' width.
// Width = 0 => maximal width for this mode.
// (aside: it's still unclear to me whether commands are
// automatically clipped to the display; I think so but
// don't want to spend any time on it until I'm certain)
// width_ = mode_description.width;
}
}