Skip to content
Snippets Groups Projects

Resolves #343 GUI and Frame Refactor

Merged Nicolas Pope requested to merge feature/gui2 into master
2 files
+ 13
6
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -168,12 +168,13 @@ static void run(ftl::Configurable *root) {
if (encodable.count(c)) {
sender->post(fs, c);
} else {
switch (c) {
case Channel::Colour :
case Channel::Colour2 :
case Channel::Depth : sender->post(fs, c, true); break;
default : sender->fakePost(fs, c);
}
//switch (c) {
//case Channel::Colour :
//case Channel::Colour2 :
//case Channel::Depth :
sender->post(fs, c, true); //break;
//default : sender->fakePost(fs, c);
//}
}
}
return true;
Loading