mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-26 22:28:41 -05:00
Correct WideGraph Geometry at initial startup.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/jtms3@2516 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
a9e21d3f47
commit
70596b61f3
@ -1,6 +1,6 @@
|
|||||||
[Setup]
|
[Setup]
|
||||||
AppName=JTMS3
|
AppName=JTMS3
|
||||||
AppVerName=JTMS3 Version 0.1 r2493
|
AppVerName=JTMS3 Version 0.2 r2516
|
||||||
AppCopyright=Copyright (C) 2001-2012 by Joe Taylor, K1JT
|
AppCopyright=Copyright (C) 2001-2012 by Joe Taylor, K1JT
|
||||||
DefaultDirName=c:\JTMS3
|
DefaultDirName=c:\JTMS3
|
||||||
DefaultGroupName=JTMS3
|
DefaultGroupName=JTMS3
|
||||||
@ -11,9 +11,7 @@ Source: "c:\Users\joe\wsjt\jtms3_install\wsjt.ico"; DestDir: "{app}"
|
|||||||
Source: "c:\Users\joe\wsjt\jtms3_install\CALL3.TXT"; DestDir: "{app}"; Flags: onlyifdoesntexist
|
Source: "c:\Users\joe\wsjt\jtms3_install\CALL3.TXT"; DestDir: "{app}"; Flags: onlyifdoesntexist
|
||||||
Source: "c:\Users\joe\wsjt\jtms3_install\afmhot.dat"; DestDir: "{app}";
|
Source: "c:\Users\joe\wsjt\jtms3_install\afmhot.dat"; DestDir: "{app}";
|
||||||
Source: "c:\Users\joe\wsjt\jtms3_install\blue.dat"; DestDir: "{app}";
|
Source: "c:\Users\joe\wsjt\jtms3_install\blue.dat"; DestDir: "{app}";
|
||||||
|
|
||||||
Source: "c:\Users\joe\wsjt\QtSupport\*.dll"; DestDir: "{sys}"; Flags: onlyifdoesntexist
|
Source: "c:\Users\joe\wsjt\QtSupport\*.dll"; DestDir: "{sys}"; Flags: onlyifdoesntexist
|
||||||
|
|
||||||
Source: "c:\Users\joe\wsjt\jtms3_install\save\dummy"; DestDir: "{app}\save";
|
Source: "c:\Users\joe\wsjt\jtms3_install\save\dummy"; DestDir: "{app}\save";
|
||||||
|
|
||||||
[Icons]
|
[Icons]
|
||||||
|
@ -318,7 +318,7 @@ void MainWindow::readSettings()
|
|||||||
ui->dxCallEntry->setText(settings.value("DXcall","").toString());
|
ui->dxCallEntry->setText(settings.value("DXcall","").toString());
|
||||||
ui->dxGridEntry->setText(settings.value("DXgrid","").toString());
|
ui->dxGridEntry->setText(settings.value("DXgrid","").toString());
|
||||||
m_wideGraphGeom = settings.value("WideGraphGeom", \
|
m_wideGraphGeom = settings.value("WideGraphGeom", \
|
||||||
QRect(45,30,1023,340)).toRect();
|
QRect(45,30,726,301)).toRect();
|
||||||
m_path = settings.value("MRUdir", m_appDir + "/save").toString();
|
m_path = settings.value("MRUdir", m_appDir + "/save").toString();
|
||||||
m_txFirst = settings.value("TxFirst",false).toBool();
|
m_txFirst = settings.value("TxFirst",false).toBool();
|
||||||
ui->txFirstCheckBox->setChecked(m_txFirst);
|
ui->txFirstCheckBox->setChecked(m_txFirst);
|
||||||
|
16
widegraph.ui
16
widegraph.ui
@ -6,16 +6,28 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>724</width>
|
<width>726</width>
|
||||||
<height>313</height>
|
<height>313</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="sizePolicy">
|
<property name="sizePolicy">
|
||||||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
|
||||||
<horstretch>0</horstretch>
|
<horstretch>0</horstretch>
|
||||||
<verstretch>0</verstretch>
|
<verstretch>0</verstretch>
|
||||||
</sizepolicy>
|
</sizepolicy>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>726</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="maximumSize">
|
||||||
|
<size>
|
||||||
|
<width>726</width>
|
||||||
|
<height>16777215</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
<property name="windowTitle">
|
<property name="windowTitle">
|
||||||
<string>Dialog</string>
|
<string>Dialog</string>
|
||||||
</property>
|
</property>
|
||||||
|
Loading…
Reference in New Issue
Block a user