Martin

Results 43 comments of Martin

I can confirm. Looks like a general issue with floating toolbars and locked application windows by modals. The same behavior you can reproduce in 1.5.3svn~r21596~20161206~ppa63~ubuntu16.04.1 I tested on KDE Neon...

I made some tests, seems like not an easy task. QToolBar::topLevelChanged(bool topLevel) doesn't work if tool bar will restored.

They uses a QDockWidget too. It is the same implementation like in offical Scribus repository.

I couln't found any of my code. However, the standard QDockWidget support horizontal docking too. I think the magic happens in the content widget management inside the dock. The QCAD...

Hey great, yesterday I merged the latest Oman CTL changes into indigo branch. In next days I will merge the latest updates too. Currently I'm working on panel layouts. Lets...

Hi @eudoxos, I have checked your decribed case in official Scribus 1.5.3. it is the same here. But interesting behavior. In next step I will redesign the panel contents. One...

Something like that? https://github.com/nitramr/scribus-indigo/wiki/Customize-Scribus

Good idea. To achieve it we can modifiy the iconmanager.cpp and load SVG's via: http://doc.qt.io/qt-5/qsvgrenderer.html ``` QSvgRenderer svgRenderer( somesvgfile ); QPixmap pix( svgRenderer.defaultSize() ); // scale factor has to be...

It is simplier as expected. Qpixmap can load nativly a SVG file. I have made a test with pages panel icon here: https://github.com/nitramr/scribus-indigo/commit/a8789628d03f1586202a917d6878a12ed1bba719 Bad thing of using SVG files is...