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> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>397</width> <width>662</width>
<height>319</height> <height>401</height>
</rect> </rect>
</property> </property>
<layout class="QVBoxLayout" name="verticalLayout"> <layout class="QVBoxLayout" name="verticalLayout">

View File

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