mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-21 04:16:12 +00:00
make text in About Dialog selectable (#871)
This commit is contained in:
parent
3400314cd2
commit
08107fdc67
@ -60,6 +60,7 @@ void AboutDialog::on_showVersionButton_clicked()
|
|||||||
{
|
{
|
||||||
QMessageBox popup(this);
|
QMessageBox popup(this);
|
||||||
popup.setWindowTitle(tr("radare2 version information"));
|
popup.setWindowTitle(tr("radare2 version information"));
|
||||||
|
popup.setTextInteractionFlags(Qt::TextSelectableByMouse);
|
||||||
auto versionInformation = Core()->getVersionInformation();
|
auto versionInformation = Core()->getVersionInformation();
|
||||||
popup.setText(versionInformation);
|
popup.setText(versionInformation);
|
||||||
popup.exec();
|
popup.exec();
|
||||||
|
@ -100,6 +100,9 @@
|
|||||||
<property name="margin">
|
<property name="margin">
|
||||||
<number>5</number>
|
<number>5</number>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="textInteractionFlags">
|
||||||
|
<set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse</set>
|
||||||
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
|
Loading…
Reference in New Issue
Block a user