diff --git a/src/widgets/kpropertiesdialog.cpp b/src/widgets/kpropertiesdialog.cpp --- a/src/widgets/kpropertiesdialog.cpp +++ b/src/widgets/kpropertiesdialog.cpp @@ -1159,13 +1159,30 @@ if (isLocal) { KMountPoint::Ptr mp = KMountPoint::currentMountPoints().findByPath(url.toLocalFile()); + + l = new QLabel(i18n("File System:"), d->m_frame); + grid->addWidget(l, curRow, 0, Qt::AlignRight); + + l = new QLabel(d->m_frame); + grid->addWidget(l, curRow++, 2); + l->setTextInteractionFlags(Qt::TextSelectableByMouse | Qt::TextSelectableByKeyboard); + l->setText(mp->mountType()); + if (mp && mp->mountPoint() != QLatin1String("/")) { l = new QLabel(i18n("Mounted on:"), d->m_frame); grid->addWidget(l, curRow, 0, Qt::AlignRight); l = new KSqueezedTextLabel(mp->mountPoint(), d->m_frame); l->setTextInteractionFlags(Qt::TextSelectableByMouse | Qt::TextSelectableByKeyboard); grid->addWidget(l, curRow++, 2); + + l = new QLabel(i18n("Mounted from:"), d->m_frame); + grid->addWidget(l, curRow, 0, Qt::AlignRight); + + l = new QLabel(d->m_frame); + grid->addWidget(l, curRow++, 2); + l->setTextInteractionFlags(Qt::TextSelectableByMouse | Qt::TextSelectableByKeyboard); + l->setText(mp->mountedFrom()); } }