Compare commits

...

2 Commits

Author SHA1 Message Date
1234008813 expand size of output window for bigger font 2025-04-13 12:59:14 +01:00
662a3a5e9c fix bug with debug autofill mode 2025-04-13 12:58:38 +01:00
2 changed files with 10 additions and 9 deletions

View File

@ -7,19 +7,19 @@
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>400</width> <width>400</width>
<height>300</height> <height>355</height>
</rect> </rect>
</property> </property>
<property name="minimumSize"> <property name="minimumSize">
<size> <size>
<width>400</width> <width>400</width>
<height>300</height> <height>355</height>
</size> </size>
</property> </property>
<property name="maximumSize"> <property name="maximumSize">
<size> <size>
<width>400</width> <width>400</width>
<height>300</height> <height>355</height>
</size> </size>
</property> </property>
<property name="windowTitle"> <property name="windowTitle">
@ -30,8 +30,8 @@
<rect> <rect>
<x>10</x> <x>10</x>
<y>10</y> <y>10</y>
<width>380</width> <width>381</width>
<height>250</height> <height>301</height>
</rect> </rect>
</property> </property>
<property name="font"> <property name="font">
@ -43,8 +43,8 @@
<widget class="QPushButton" name="res_ok_but"> <widget class="QPushButton" name="res_ok_but">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>320</x> <x>318</x>
<y>270</y> <y>323</y>
<width>75</width> <width>75</width>
<height>24</height> <height>24</height>
</rect> </rect>
@ -61,8 +61,8 @@
<widget class="QPushButton" name="res_save_but"> <widget class="QPushButton" name="res_save_but">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>240</x> <x>238</x>
<y>270</y> <y>323</y>
<width>75</width> <width>75</width>
<height>24</height> <height>24</height>
</rect> </rect>

View File

@ -121,6 +121,7 @@ class PlatformEdit(QWidget):
self.share_deal_fee = 5.00 self.share_deal_fee = 5.00
self.share_deal_reduce_trades = 10 self.share_deal_reduce_trades = 10
self.share_deal_reduce_amount = 3.50 self.share_deal_reduce_amount = 3.50
self.check_boxes_ticked = [True, True, True, True, True]
else: else:
self.plat_name = self.plat_name_box.text() self.plat_name = self.plat_name_box.text()
self.fund_plat_fee = self.create_plat_fee_struct() self.fund_plat_fee = self.create_plat_fee_struct()