diff --git a/src/apps/mediaconverter/MediaConverterWindow.cpp b/src/apps/mediaconverter/MediaConverterWindow.cpp index f26edc8efa..661cf62f1e 100644 --- a/src/apps/mediaconverter/MediaConverterWindow.cpp +++ b/src/apps/mediaconverter/MediaConverterWindow.cpp @@ -877,6 +877,10 @@ MediaConverterWindow::TruncateOutputFolderPath() fOutputFolder->TruncateString(&pathString, B_TRUNCATE_MIDDLE, maxWidth); fOutputFolder->SetText(pathString.String()); + if (fOutputFolder->StringWidth(path.Path()) > maxWidth) + fOutputFolder->SetToolTip(path.Path()); + else + fOutputFolder->SetToolTip((const char*)NULL); }