- 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:
|
protected:
|
||||||
void doLoad() override;
|
void doLoad() override;
|
||||||
void doSave() override;
|
void doSave() override;
|
||||||
|
private slots:
|
||||||
|
void on_btnChooseLib_clicked();
|
||||||
|
|
||||||
|
// SettingsWidget interface
|
||||||
|
protected:
|
||||||
|
void updateIcons(const QSize &size) Q_DECL_OVERRIDE;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // PROJECTCOMPILEPARAMATERSWIDGET_H
|
#endif // PROJECTCOMPILEPARAMATERSWIDGET_H
|
||||||
|
|
|
@ -115,7 +115,14 @@
|
||||||
<item>
|
<item>
|
||||||
<widget class="QToolButton" name="btnChooseLib">
|
<widget class="QToolButton" name="btnChooseLib">
|
||||||
<property name="text">
|
<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>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
@ -128,6 +135,8 @@
|
||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
<resources/>
|
<resources>
|
||||||
|
<include location="../icons.qrc"/>
|
||||||
|
</resources>
|
||||||
<connections/>
|
<connections/>
|
||||||
</ui>
|
</ui>
|
||||||
|
|
Loading…
Reference in New Issue