Bug 98039 - Status bar shouldn't change size when moving mouse over links
Summary: Status bar shouldn't change size when moving mouse over links
Status: RESOLVED FIXED
Alias: None
Product: akregator
Classification: Applications
Component: general (show other bugs)
Version: unspecified
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: kdepim bugs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-01-28 04:30 UTC by Jure Repinc
Modified: 2006-05-10 16:32 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jure Repinc 2005-01-28 04:30:35 UTC
Version:           1.0 (using KDE Devel)
Installed from:    Compiled sources
Compiler:          GCC 3.4.1 MandrakeLinux 10.1
OS:                Linux

Reproducable: always

Steps to reproduce:
1. open akregator
2. select a message to display
3. move mouse pointer over a link in the message

Actual results:
Status bar gets lower for a few pixels while the mouse pointer is over the link. This happens when a text with link target gets shown in status bar.

Expected result:
Statusbar hight shouldn't change when link target text gets shown in it.
Comment 1 Teemu Rytilahti 2005-01-28 07:43:35 UTC
I've seen this, but don't know what causes it...
Comment 2 Teemu Rytilahti 2005-01-28 10:46:49 UTC
CVS commit by rytilahti: 

Reimplement slotSetStatusBarText to change only the label, not the statusbar, as we have progressbar there now too.
BUG:98039


  M +4 -0      akregator.cpp   1.80
  M +1 -0      akregator.h   1.36


--- kdepim/akregator/src/akregator.cpp  #1.79:1.80
@@ -252,4 +252,8 @@ void MainWindow::slotClearStatusText()
     m_statusLabel->setText(QString());
 }
+void MainWindow::slotSetStatusBarText( const QString & text )
+{
+    m_statusLabel->setText(text);
+}
 
 #include "akregator.moc"

--- kdepim/akregator/src/akregator.h  #1.35:1.36
@@ -82,4 +82,5 @@ public:
 public slots:
     void slotClearStatusText();
+    void slotSetStatusBarText(const QString &c);
 
 protected:


Comment 3 A T Somers 2006-05-09 21:41:07 UTC
I still see this bug in the latest version 1.2.2. The it looks like the whole window is shaking when moving over a link. The problem seems to be that the link address shown in the status bar does not have a border, while the text normally there does. This causes them to have different heights, resulting in the resizing of the entire bar.
Comment 4 A T Somers 2006-05-10 16:32:09 UTC
This is weird... The problem I reported yesterday does not happen today, even though I did not change configuration or updated.