| Summary: | too easy to hit close button on tabs that have no title | ||
|---|---|---|---|
| Product: | [Applications] konqueror | Reporter: | Wilbert Berendsen <wbsoft> |
| Component: | tabbing | Assignee: | Konqueror Bugs <konqueror-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Wilbert Berendsen
2003-10-01 16:23:44 UTC
forgot to say this only applies when having 'close buttons on tabs instead of website icons' enabled. Subject: kdebase/konqueror CVS commit by binner: Ignore empty [in-between] captions like in KonqMainWindow::setCaption. Not sure what the real solution for both and HTML pages without title is. CCMAIL: 65320-done@bugs.kde.org M +2 -0 konq_view.cc 1.347 --- kdebase/konqueror/konq_view.cc #1.346:1.347 @@ -612,4 +612,6 @@ void KonqView::setTabIcon( const QStrin void KonqView::setCaption( const QString & caption ) { + if (caption.isEmpty()) return; + m_caption = caption; if (!m_bPassiveMode) frame()->setTitle( caption , 0L ); |