| Summary: | Crash when click on where deleted object used to be | ||
|---|---|---|---|
| Product: | [Applications] kst | Reporter: | Andrew Walker <arwalker> |
| Component: | general | Assignee: | kst |
| Status: | RESOLVED FIXED | ||
| Severity: | crash | ||
| Priority: | NOR | ||
| Version First Reported In: | 1.x | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Andrew Walker
2006-03-28 21:44:32 UTC
SVN commit 523676 by arwalker:
BUG:124444 Reset the focus while deleting the selected objects.
M +3 -0 ksttoplevelview.cpp
--- trunk/extragear/graphics/kst/src/libkstapp/ksttoplevelview.cpp #523675:523676
@@ -1600,6 +1600,9 @@
toBeDeleted.push_front(*it);
}
}
+
+ clearFocus();
+
while (!toBeDeleted.isEmpty()) {
removeChild(toBeDeleted.front());
toBeDeleted.pop_front();
|