| Summary: | After Scaling, Advanced button does not function | ||
|---|---|---|---|
| Product: | [Applications] krdc | Reporter: | 20120808_bugs.kde.org |
| Component: | general | Assignee: | Jaison Lee <lee.jaison> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | openSUSE | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
20120808_bugs.kde.org
2005-11-22 22:44:35 UTC
Confirmed here, on Kubuntu 5.10, krdc 4:3.4.3-0ubuntu1, connecting to a Windows XP machine running UltraVNC 1.0.1. Easiest work-around is to enable and then disable fullscreen mode, this re-enables the Advanced drop-down menu. Confirmed as well on gentoo using KDE 3.5.2. Please be aware KRDC is currently unmaintained, and the future of the program is uncertain. SVN commit 562938 by kling:
Don't delete the "Advanced" popup menu without intentions of recreating it.
BUG: 116913
M +5 -4 krdc.cpp
--- branches/KDE/3.5/kdenetwork/krdc/krdc.cpp #562937:562938
@@ -553,10 +553,6 @@
m_oldResolution = Resolution();
}
- if (m_popup) {
- m_popup->deleteLater();
- m_popup = 0;
- }
if (m_fsToolbar) {
m_fsToolbar->hide();
m_fsToolbar->deleteLater();
@@ -595,6 +591,11 @@
QWhatsThis::add(skButton, i18n("This option allows you to send special key combinations like Ctrl-Alt-Del to the remote host."));
t->addConnection(2, SIGNAL(clicked()), m_keyCaptureDialog, SLOT(execute()));
+ if (m_popup) {
+ m_popup->deleteLater();
+ m_popup = 0;
+ }
+
m_popup = createPopupMenu(t);
t->insertButton("configure", 3, m_popup, true, i18n("Advanced"));
KToolBarButton *advancedButton = t->getButton(3);
|