diff --git a/src/widgets/kpropertiesdialog.cpp b/src/widgets/kpropertiesdialog.cpp --- a/src/widgets/kpropertiesdialog.cpp +++ b/src/widgets/kpropertiesdialog.cpp @@ -1159,6 +1159,15 @@ 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); @@ -1167,6 +1176,14 @@ 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()); } l = new QLabel(i18n("Device usage:"), d->m_frame);