Pavel Sanda wrote:
hola,
because more people didnt like the 'handy' way (TM) of ui toggling i introduced
some gui interface
and thus F11 and users configuration should be basically usable now.
i know about two issues currently:
1. more workareas handling needs to be added (toolbars toggling wont work with
them now)
2. borders of new tab in fullscreen mode are not correct.
(i will address these later).
comments welcomed.
int BufferView::rightMargin() const
{
- if (!full_screen_ || width_ < max_row_width + 20)
+ if (!full_screen_)
return 10;
Hum, I put the additional test in case the outliner is opened and the
available width is smaller. In this case you
- return (width_ - max_row_width) / 2;
+ return (width_ - (lyxrc.full_screen_width * width_) / 100) / 2;
Why a proportional width? I think the max width in pixel is more sensible.
Abdel.