2
0
forked from Ivasoft/DSView

Display the profile path name in the title bar

This commit is contained in:
dreamsourcelabTAI
2023-05-29 17:20:06 +08:00
parent 192a58a1fd
commit ee0d88f91c
9 changed files with 80 additions and 18 deletions

View File

@@ -81,14 +81,13 @@ MainFrame::MainFrame()
QIcon icon;
icon.addFile(QString::fromUtf8(":/icons/logo.svg"), QSize(), QIcon::Normal, QIcon::Off);
setWindowIcon(icon);
// Title
_titleBar = new toolbars::TitleBar(true, this);
// MainWindow
_mainWindow = new MainWindow(this);
_mainWindow = new MainWindow(_titleBar, this);
_mainWindow->setWindowFlags(Qt::Widget);
_titleBar->setTitle(_mainWindow->windowTitle());
QVBoxLayout *vbox = new QVBoxLayout();
vbox->setContentsMargins(0,0,0,0);