- fix: index of the longest line not correctly updated ( which will cause selection errors)
This commit is contained in:
parent
0d2c842317
commit
512371a6d4
|
@ -39,6 +39,12 @@ private:
|
|||
protected:
|
||||
void doLoad() override;
|
||||
void doSave() override;
|
||||
private slots:
|
||||
void on_btnChooseLib_clicked();
|
||||
|
||||
// SettingsWidget interface
|
||||
protected:
|
||||
void updateIcons(const QSize &size) Q_DECL_OVERRIDE;
|
||||
};
|
||||
|
||||
#endif // PROJECTCOMPILEPARAMATERSWIDGET_H
|
||||
|
|
|
@ -115,7 +115,14 @@
|
|||
<item>
|
||||
<widget class="QToolButton" name="btnChooseLib">
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
<string>Add Library Files</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../icons.qrc">
|
||||
<normaloff>:/icons/images/newlook24/035-expolr.png</normaloff>:/icons/images/newlook24/035-expolr.png</iconset>
|
||||
</property>
|
||||
<property name="toolButtonStyle">
|
||||
<enum>Qt::ToolButtonTextBesideIcon</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
@ -128,6 +135,8 @@
|
|||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<resources/>
|
||||
<resources>
|
||||
<include location="../icons.qrc"/>
|
||||
</resources>
|
||||
<connections/>
|
||||
</ui>
|
||||
|
|
Loading…
Reference in New Issue