Added layout to the attachProcDialog to enable resizing the attach process popup (#2811)

This commit is contained in:
AdavisSnakes 2021-11-06 05:40:11 -04:00 committed by GitHub
parent e358ff797d
commit 236f85f83d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,47 +45,43 @@
<property name="title"> <property name="title">
<string>Processes with same name as currently open file:</string> <string>Processes with same name as currently open file:</string>
</property> </property>
<widget class="QTreeView" name="procBeingAnalyzedView"> <layout class="QVBoxLayout" name="verticalLayout_3">
<property name="geometry"> <item>
<rect> <widget class="QTreeView" name="procBeingAnalyzedView">
<x>0</x> <property name="sizePolicy">
<y>30</y> <sizepolicy hsizetype="Expanding" vsizetype="MinimumExpanding">
<width>794</width> <horstretch>0</horstretch>
<height>111</height> <verstretch>0</verstretch>
</rect> </sizepolicy>
</property> </property>
<property name="sizePolicy"> <property name="maximumSize">
<sizepolicy hsizetype="Expanding" vsizetype="MinimumExpanding"> <size>
<horstretch>0</horstretch> <width>16777215</width>
<verstretch>0</verstretch> <height>16777215</height>
</sizepolicy> </size>
</property> </property>
<property name="maximumSize"> <property name="styleSheet">
<size> <string notr="true">QTreeView::item
<width>16777215</width>
<height>16777215</height>
</size>
</property>
<property name="styleSheet">
<string notr="true">QTreeView::item
{ {
padding-top: 1px; padding-top: 1px;
padding-bottom: 1px; padding-bottom: 1px;
}</string> }</string>
</property> </property>
<property name="frameShape"> <property name="frameShape">
<enum>QFrame::NoFrame</enum> <enum>QFrame::NoFrame</enum>
</property> </property>
<property name="lineWidth"> <property name="lineWidth">
<number>0</number> <number>0</number>
</property> </property>
<property name="indentation"> <property name="indentation">
<number>8</number> <number>8</number>
</property> </property>
<property name="sortingEnabled"> <property name="sortingEnabled">
<bool>true</bool> <bool>true</bool>
</property> </property>
</widget> </widget>
</item>
</layout>
</widget> </widget>
</item> </item>
<item> <item>
@ -93,41 +89,37 @@
<property name="title"> <property name="title">
<string>All processes:</string> <string>All processes:</string>
</property> </property>
<widget class="QTreeView" name="allProcView"> <layout class="QVBoxLayout" name="verticalLayout_4">
<property name="geometry"> <item>
<rect> <widget class="QTreeView" name="allProcView">
<x>0</x> <property name="maximumSize">
<y>50</y> <size>
<width>794</width> <width>16777215</width>
<height>331</height> <height>16777215</height>
</rect> </size>
</property> </property>
<property name="maximumSize"> <property name="styleSheet">
<size> <string notr="true">QTreeView::item
<width>16777215</width>
<height>16777215</height>
</size>
</property>
<property name="styleSheet">
<string notr="true">QTreeView::item
{ {
padding-top: 1px; padding-top: 1px;
padding-bottom: 1px; padding-bottom: 1px;
}</string> }</string>
</property> </property>
<property name="frameShape"> <property name="frameShape">
<enum>QFrame::NoFrame</enum> <enum>QFrame::NoFrame</enum>
</property> </property>
<property name="lineWidth"> <property name="lineWidth">
<number>0</number> <number>0</number>
</property> </property>
<property name="indentation"> <property name="indentation">
<number>8</number> <number>8</number>
</property> </property>
<property name="sortingEnabled"> <property name="sortingEnabled">
<bool>true</bool> <bool>true</bool>
</property> </property>
</widget> </widget>
</item>
</layout>
</widget> </widget>
</item> </item>
</layout> </layout>