| Summary: | KMenueditor don't save the changes | ||
|---|---|---|---|
| Product: | [I don't know] kde | Reporter: | Raul Moratalla <raul.moratalla> |
| Component: | general | Assignee: | Unassigned bugs <unassigned-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | RedHat Enterprise Linux | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: |
Corret .config folder
Bad .config folder |
||
|
Description
Raul Moratalla
2004-06-01 01:11:02 UTC
Can you make a tarbal of your .config directory and attach it to this bugreport once you notice that kmenuedit won't save changes? Created attachment 6210 [details]
Corret .config folder
This is the correct .config folder before the bug.
Created attachment 6211 [details]
Bad .config folder
This is my menu that I can't edit, well, I can save changes of description or
icons, but I can't add or delete any item. I save the changes but there are no
effect.
CVS commit by waba: Treat file locations under $XDG_CONFIG_DIRS/menus/ as relative to $XDG_CONFIG_DIRS/menus/ (BR82610) CCMAIL: 82610-done@bugs.kde.org M +6 -1 vfolder_menu.cpp 1.24 --- kdelibs/kded/vfolder_menu.cpp #1.23:1.24 @@ -680,5 +680,10 @@ VFolderMenu::pushDocInfo(const QString & m_docInfoStack.push(m_docInfo); if (!baseDir.isEmpty()) + { + if (baseDir.startsWith("/")) + m_docInfo.baseDir = KGlobal::dirs()->relativeLocation("xdgconf-menu", baseDir); + else m_docInfo.baseDir = baseDir; + } QString baseName = fileName; |