1
0

Resize config window

This commit is contained in:
MatMoul 2024-03-09 15:14:05 +01:00
parent 09a62ab6ea
commit be4ece3cf2
2 changed files with 4 additions and 2 deletions

View File

@ -6,8 +6,8 @@
<rect>
<x>0</x>
<y>0</y>
<width>397</width>
<height>319</height>
<width>662</width>
<height>401</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLayout">

View File

@ -34,6 +34,8 @@ QWidget *CustomDesktopMenu::createConfigurationInterface(QWidget *parent)
QWidget *widget = new QWidget(parent);
m_ui.setupUi(widget);
widget->setWindowTitle(i18nc("plasma_containmentactions_customdesktopmenu", "Configure Application Launcher Plugin"));
widget->setFixedWidth(660);
widget->setFixedHeight(400);
m_ui.configData->setPlainText(m_menuConfig);
m_ui.showAppsByName->setChecked(m_showAppsByName);
return widget;