Summary: | "Always on top" status stored, but not set on startup | ||
---|---|---|---|
Product: | [Unmaintained] knotes | Reporter: | Kevin Goeser <kevin> |
Component: | general | Assignee: | Michael Brade <brade> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Gentoo Packages | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Kevin Goeser
2005-09-24 16:16:28 UTC
SVN commit 495357 by brade: Fixed #113223: actually set the "Keep Above/Below" bit when creating a note on startup. I wondered what the hell was going on for too long (I couldn't disable the "Keep Above" flag anymore) until Tobias pointed me to commit #465269.... Will also be fixed for KDE 3.5.1. BUG: 113223 M +2 -0 ChangeLog M +2 -1 knote.cpp --- branches/KDE/3.5/kdepim/knotes/ChangeLog #495356:495357 @@ -6,6 +6,8 @@ * fixed #103780: separate "Clear" action visually from Cut/Copy/Paste since it's not doing anything with the clipboard * fixed #110672: added a "Do not show again" box to the delete note dialog + * fixed #113223: actually set the "Keep Above/Below" bit when creating a + note on startup 2006/01/06 Michael Brade <brade@kde.org> --- branches/KDE/3.5/kdepim/knotes/knote.cpp #495356:495357 @@ -1,7 +1,7 @@ /******************************************************************* KNotes -- Notes for the KDE project - Copyright (c) 1997-2005, The KNotes Developers + Copyright (c) 1997-2006, The KNotes Developers This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License @@ -351,6 +351,7 @@ m_keepAbove->setChecked( false ); m_keepBelow->setChecked( false ); } + slotUpdateKeepAboveBelow(); // HACK: update the icon color - again after showing the note, to make kicker aware of the new colors KIconEffect effect; |