Sorry for delay, I was ill.
It works) Thanks, texus)
But there was a difference (which gives programmers to choose between the stretchable/unstretchable tabs)
1st is:
2nd is:
But I don't know whether to give programmers a choice (?) because stretchable tabs are most commonly used
It works) Thanks, texus)
But there was a difference (which gives programmers to choose between the stretchable/unstretchable tabs)
1st is:
Code (cpp) Select
winEditConfigTabs = theme->load("tab");
winEditConfigTabs->setTextSize(text_size);
winEditConfigTabs->setPosition(8, 60);
winEditConfigTabs->add(txt_tab_view);
winEditConfigTabs->add(txt_tab_export,false);
winEditConfigTabs->connect("TabSelected", [&](){ ConfigWinUpdate(); } );
winEditConfig->add(winEditConfigTabs); // <==2nd is:
Code (cpp) Select
winEditConfigTabs = theme->load("tab");
winEditConfig->add(winEditConfigTabs); // <==
winEditConfigTabs->setTextSize(text_size);
winEditConfigTabs->setPosition(8, 60);
winEditConfigTabs->add(txt_tab_view);
winEditConfigTabs->add(txt_tab_export,false);
winEditConfigTabs->connect("TabSelected", [&](){ ConfigWinUpdate(); } );But I don't know whether to give programmers a choice (?) because stretchable tabs are most commonly used


) - when selects the '\n' at the end of line (at the end of the paragraph especially), it selects word on next line or itself '\n' at the current (but visually the caret moves to beginning of the line)
Maybe it doesn't need to do this?

