borders overwrites elements in table #910
Replies: 1 comment 5 replies
-
Hello, I am not sure to understand what you are reporting. diagnostic = falsediagnostic = trueWhat's wrong? |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When I add border around the hbox/vbox the border overwrites the content of my tables.
How do I fix this?
(I am a cpp and ftxui newbe)
When I run the code below in transparent view (diagnostic = false), I get the transparent view viewed perfectly with a border around the content. But when i run it in diagnostics view (diagnostic = true), the last element in all tables disappears when I keep this line :
auto full_view = border(diagnostic_view);
When I remove it all content is shown, but then I do not have the border.
My code:
int main() {
using namespace ftxui;
bool diagnostic = true;
return 0;
}
Beta Was this translation helpful? Give feedback.
All reactions