Custom Query (301 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (28 - 30 of 301)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Ticket Resolution Summary Owner Reporter
#155 wontfix Depend on WarpIn 1.0.20 Dmitry A. Kuminov
Description

This is a continuation of #146. When WarpIn? 1.0.20 is out, we should revert r736 and r737 to restore the more advanced behavior.

#164 wontfix File open dialog not sorting by name rudi
Description

Not sure if this os OS/2 specific, but I have here a few examples where the file open dialog is not sorting the files as it should. See screenshot...

#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);
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Note: See TracQuery for help on using queries.