Changeset 47156 in webkit


Ignore:
Timestamp:
Aug 12, 2009 3:49:16 PM (15 years ago)
Author:
eric@webkit.org
Message:

2009-08-12 George Wright <george.wright@torchmobile.com>

Reviewed by Adam Treat.

Initialise zoom levels independent of whether a URL is valid or not to
fix https://bugs.webkit.org/show_bug.cgi?id=28162

  • QtLauncher/main.cpp: (MainWindow::MainWindow):
Location:
trunk/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/qt/ChangeLog

    r47101 r47156  
     12009-08-12  George Wright  <george.wright@torchmobile.com>
     2
     3        Reviewed by Adam Treat.
     4
     5        Initialise zoom levels independent of whether a URL is valid or not to
     6        fix https://bugs.webkit.org/show_bug.cgi?id=28162
     7
     8        * QtLauncher/main.cpp:
     9        (MainWindow::MainWindow):
     10
    1112009-08-12  Joerg Bornemann  <joerg.bornemann@trolltech.com>
    212
  • trunk/WebKit/qt/QtLauncher/main.cpp

    r46717 r47156  
    104104            view->load(qurl);
    105105
    106             // the zoom values are chosen to be like in Mozilla Firefox 3
    107             zoomLevels << 30 << 50 << 67 << 80 << 90;
    108             zoomLevels << 100;
    109             zoomLevels << 110 << 120 << 133 << 150 << 170 << 200 << 240 << 300;
    110106        }
     107
     108        // the zoom values are chosen to be like in Mozilla Firefox 3
     109        zoomLevels << 30 << 50 << 67 << 80 << 90;
     110        zoomLevels << 100;
     111        zoomLevels << 110 << 120 << 133 << 150 << 170 << 200 << 240 << 300;
    111112    }
    112113
Note: See TracChangeset for help on using the changeset viewer.