| Summary: | Special button is 'Terminal Sessions' is not automatically updated | ||
|---|---|---|---|
| Product: | [Applications] konsole | Reporter: | Ernst de Haan <znerd> |
| Component: | general | Assignee: | Konsole Bugs <konsole-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 1.3.1 | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | FreeBSD | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | Patch to add a 'Relead Sessions' | ||
|
Description
Ernst de Haan
2004-04-03 13:26:09 UTC
Work-around (without removing/readding panel button): Run "dcop kicker Panel restart" in shell or mini-CLI. Created attachment 8806 [details]
Patch to add a 'Relead Sessions'
This adds a 'Reload Sessions' at the bottom of the menu.
The dcop call now seems to be:
% dcop kicker kicker restart
Index: konsole_mnu.cpp
===================================================================
RCS file: /home/kde/kdebase/kicker/menuext/konsole/konsole_mnu.cpp,v
retrieving revision 1.10
diff -u -p -r1.10 konsole_mnu.cpp
--- konsole_mnu.cpp 27 Nov 2004 12:22:13 -0000 1.10
+++ konsole_mnu.cpp 25 Dec 2004 01:13:01 -0000
@@ -163,6 +163,10 @@ void KonsoleMenu::initialize()
}
closedir(dir);
}
+
+ insertSeparator();
+ insertItem(SmallIconSet("reload"),
+ i18n("Reload Sessions"), this, SLOT(reinitialize()));
}
void KonsoleMenu::slotExec(int id)
CVS commit by hindenburg:
Add a 'Reload Sessions' to the menu. I don't see how to automate this
so we'll give the user a way.
BUG: 78969
M +4 -0 konsole_mnu.cpp 1.11
--- kdebase/kicker/menuext/konsole/konsole_mnu.cpp #1.10:1.11
@@ -164,4 +164,8 @@ void KonsoleMenu::initialize()
closedir(dir);
}
+
+ insertSeparator();
+ insertItem(SmallIconSet("reload"),
+ i18n("Reload Sessions"), this, SLOT(reinitialize()));
}
|