Summary: | Unknown filters in Save Sky Image | ||
---|---|---|---|
Product: | [Applications] kstars | Reporter: | Mike De Lange <mdelange> |
Component: | general | Assignee: | kstars |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Compiled Sources | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Mike De Lange
2004-01-17 00:48:43 UTC
Confirmed. The problem is, we specify the filter string as: "image/png image/jpg image/gif image/pnm image/bmp" After examining the "File associations" tab of the konqueror config tool, I am guessing that some of those are not recognized Mime types. After the deep freeze, we'll have to change the following: image/jpg --> image/jpeg image/pnm --> image/x-portable-pixmap image/bmp --> image/x-bmp Who can claim to understand the mysteries behind Mime-type names? Not I. Thanks for the report. Subject: kdeedu/kstars/kstars CVS commit by harris: Fixing bug #72788 (Unknown filters in Save Sky Image) Backporting to KDE_3_2_BRANCH as well. CCMAIL: 72788-done@bugs.kde.org CCMAIL: kstars-devel@kde.org M +4 -4 kstarsactions.cpp 1.80 --- kdeedu/kstars/kstars/kstarsactions.cpp #1.79:1.80 @@ -291,5 +291,5 @@ void KStars::closeWindow() { void KStars::slotExportImage() { - KURL fileURL = KFileDialog::getSaveURL( QDir::homeDirPath(), "image/png image/jpg image/gif image/pnm image/bmp" ); + KURL fileURL = KFileDialog::getSaveURL( QDir::homeDirPath(), "image/png image/jpeg image/gif image/x-portable-pixmap image/x-bmp" ); KTempFile tmpfile; QString fname; |