~ubuntu-branches/ubuntu/hoary/kdebase/hoary-security

« back to all changes in this revision

Viewing changes to debian/patches/kubuntu_21_konq_tab_colour.diff

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2005-04-06 02:46:32 UTC
  • Revision ID: james.westby@ubuntu.com-20050406024632-bfbdiwe5taqmmx9b
Tags: 4:3.4.0-0ubuntu18
* Add kubuntu_21_konq_tab_colour.diff make loading tab text colour visible
* Add kubuntu_22_kipper_menu.diff hide klipper from menu

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--- kdebase-3.4.0/konqueror/konq_viewmgr.cc     2005-04-06 02:42:40.951942056 +0100
 
2
+++ kdebase-3.4.0/konqueror/konq_viewmgr.cc     2005-04-06 02:44:56.796290576 +0100
 
3
@@ -1751,7 +1751,9 @@
 
4
     QColor color;
 
5
     KonqFrameTabs* konqframetabs = static_cast<KonqFrameTabs*>( parentContainer );
 
6
     if ( loading )
 
7
-      color = KGlobalSettings::inactiveTextColor();
 
8
+      color = QColor( (KGlobalSettings::linkColor().red()  + KGlobalSettings::inactiveTextColor().red())/2,
 
9
+                      (KGlobalSettings::linkColor().green()+ KGlobalSettings::inactiveTextColor().green())/2,
 
10
+                      (KGlobalSettings::linkColor().blue() + KGlobalSettings::inactiveTextColor().blue())/2 );
 
11
     else
 
12
     {
 
13
       if ( konqframetabs->currentPage() != view->frame() )