Custom Query (301 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (136 - 138 of 301)

Ticket Resolution Summary Owner Reporter
#172 fixed Update to Qt 4.6.3 Silvan Scherrer
Description

Update the Qt code base to the upstream version to 4.6.3 from Nokia.

#171 fixed Arora web browser not showing web site icons rudi
Description

The Arora browser doesn't show web site icons in the menus and page tabs, even though the requested web site does provide favicon.ico.

This appears to be a multi-platform bug in Webkit. According to:

http://bugreports.qt.nokia.com/browse/QTWEBKIT-97

it has been fixed in 4.6.3.

#170 wontfix QIcon size selection different Windows vs. OS/2 rudi
Description

As you can see in the attachments, the "back" / "forward" buttons in the OS/2 version of the Arora browser are much smaller than in the windows version. The reason for that is that the PNG images for those buttons are available in the resolutions 16,32 and 128px while the "reload" image is present in 24 and 32px. The default size of the toolbar buttons in OS/2 is 24px, for which "back" and "forward" don't have an exact match. However, while our implementation chooses the next smaller pixmap, the Windows version downscales the higher one.

Even though the Windows source is also of version 4.6.2, there is different code in gui/image/qicon.cpp:

OS/2:

161	    int b = area(pb->size);
162	
163	    // prefer the largest among smaller
164	    int res = qMax(a,b);
165	    if (res > s) {
166	        // fallback to the smallest among larger
167	        res = qMin(a,b);
168	    }

Windows:

    int b = area(pb->size);
    int res = a;
    if (qMin(a,b) >= s)
        res = qMin(a,b);
    else
        res = qMax(a,b);
Note: See TracQuery for help on using queries.