--Bug fixes

-Update /debian/changelog to use a newer version of ubuntu named artful. Users will need to add that PPA to get it via apt.
-Update copyright year to 2018.
This commit is contained in:
Person
2017-12-21 22:11:18 -08:00
parent 7956e008d7
commit 49b6ef20c1
3 changed files with 8 additions and 4 deletions

View File

@ -46,7 +46,11 @@ Fractorium::Fractorium(QWidget* p)
for (auto dock : m_Docks)//Prevents a dock from ever getting accidentally hidden.
{
dock->setWindowFlags(dock->windowFlags() & Qt::WindowStaysOnTopHint);
dock->setAllowedAreas(Qt::DockWidgetArea::LeftDockWidgetArea | Qt::DockWidgetArea::RightDockWidgetArea);
dock->setAllowedAreas(Qt::DockWidgetArea::LeftDockWidgetArea
//#if (QT_VERSION >= QT_VERSION_CHECK(5, 6, 0))
| Qt::DockWidgetArea::RightDockWidgetArea
//#endif
);
}
m_FontSize = 9;