Skip to content

Commit

Permalink
Added new line in unmount confirmation
Browse files Browse the repository at this point in the history
  • Loading branch information
kapitainsky committed Feb 22, 2020
1 parent 51cbecd commit 984c656
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mount_widget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ MountWidget::MountWidget(QProcess *process, const QString &remote,
int button = QMessageBox::question(
this, "Unmount",
#if defined(Q_OS_WIN)
QString("Do you want to unmount %1 drive?").arg(folder),
QString("Do you want to unmount\n\n %1 drive?").arg(folder),
#else
QString("Do you want to unmount %1 folder?").arg(folder),
QString("Do you want to unmount\n\n %1 folder?").arg(folder),
#endif
QMessageBox::Yes | QMessageBox::No);
if (button == QMessageBox::Yes) {
Expand Down

0 comments on commit 984c656

Please sign in to comment.