mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-25 15:39:27 -05:00
Fix Desktop Filename for option page message.
This commit is contained in:
parent
7cd31aa788
commit
4b0f82a6d0
@ -789,7 +789,10 @@ bool RshareSettings::getRetroShareProtocol()
|
||||
}
|
||||
}
|
||||
#elif defined(Q_OS_LINUX)
|
||||
QFile desktop("/usr/share/applications/RetroShare06.desktop");
|
||||
QFile desktop("/usr/share/applications/retroshare06.desktop");
|
||||
if (!desktop.exists()) {
|
||||
desktop.setFileName("/usr/share/applications/RetroShare06.desktop");
|
||||
}
|
||||
if (desktop.exists()) {
|
||||
desktop.open(QIODevice::ReadOnly | QIODevice::Text);
|
||||
QTextStream in(&desktop);
|
||||
|
Loading…
Reference in New Issue
Block a user