| Age | Commit message (Collapse) | Author |
|
not work
@David: the same issue occurs in Konqueror (settings/konq/behavior.cpp) - may I apply the fix there too?
BUG: 167773
CCMAIL: [email protected]
svn path=/trunk/KDE/kdebase/apps/; revision=841473
|
|
svn path=/trunk/KDE/kdebase/apps/; revision=841434
|
|
svn path=/trunk/KDE/kdebase/apps/; revision=841432
|
|
are selected. TODO: disable the rename action (and other selection dependent actions) when no items are selected.
BUG: 168183
svn path=/trunk/KDE/kdebase/apps/; revision=841418
|
|
Fixes the issue: open three tabs. Select the second one and close it. Now right tab is active, but content for left tab is shown.
Will backport to 4.1.
CCMAIL: [email protected]
svn path=/trunk/KDE/kdebase/apps/; revision=839877
|
|
svn path=/trunk/KDE/kdebase/apps/; revision=839172
|
|
svn path=/trunk/KDE/kdebase/apps/; revision=838119
|
|
svn path=/trunk/KDE/kdebase/apps/; revision=838112
|
|
setup. Thanks to Lucas Murray for the patch!
BUG: 167205
svn path=/trunk/KDE/kdebase/apps/; revision=838041
|
|
svn path=/trunk/KDE/kdebase/apps/; revision=838040
|
|
TODO 1: use the D-Bus interface directly instead of using KRun::runCommand() as workaround.
TODO 2: a new icon would be necessary
CCMAIL: [email protected]
svn path=/trunk/KDE/kdebase/apps/; revision=838039
|
|
reasons, so that code which just needs to know whether items have been selected does not need to invoke selectedItems().count(), which is quite expensive.
svn path=/trunk/KDE/kdebase/apps/; revision=838037
|
|
on each breadcrumb of the URL navigator
BUG: 164304
svn path=/trunk/KDE/kdebase/apps/; revision=837486
|
|
inactive view instead of the active view
BUG: 167209
svn path=/trunk/KDE/kdebase/apps/; revision=836643
|
|
gets hidden
BUG: 167044
svn path=/trunk/KDE/kdebase/apps/; revision=835185
|
|
svn path=/trunk/KDE/kdebase/apps/; revision=835181
|
|
not work as expected anymore...
CCBUG: 167044
svn path=/trunk/KDE/kdebase/apps/; revision=835179
|
|
panel got polished
BUG: 167044
svn path=/trunk/KDE/kdebase/apps/; revision=835169
|
|
delete-confirmation
BUG: 166717
svn path=/trunk/KDE/kdebase/apps/; revision=834990
|
|
compile with old XShape (taken from kwin/utils.h)
BUG 166324
svn path=/trunk/KDE/kdebase/apps/; revision=834961
|
|
BUG: 166592
svn path=/trunk/KDE/kdebase/apps/; revision=834845
|
|
QProgressBar is used instead of KCapacityBar)
svn path=/trunk/KDE/kdebase/apps/; revision=834788
|
|
case when two partitions have a different size but an equal used size
(no backport to KDE 4.1 necessary, as there QProgressBar is used instead of KCapacityBar)
CCMAIL: [email protected]
svn path=/trunk/KDE/kdebase/apps/; revision=834550
|
|
- Align vertically the text correctly
- Minimum width of the widget (not forcing it to 200)
CCMAIL: [email protected]
svn path=/trunk/KDE/kdebase/apps/; revision=834445
|
|
svn path=/trunk/KDE/kdebase/apps/; revision=832953
|
|
DolphinViewActionHandler.
svn path=/trunk/KDE/kdebase/apps/; revision=831148
|
|
"configure shortcuts"
svn path=/trunk/KDE/kdebase/apps/; revision=831111
|
|
svn path=/trunk/KDE/kdebase/apps/; revision=830463
|
|
(uninitialized member variable)
BUG: 166102
svn path=/trunk/KDE/kdebase/apps/; revision=829777
|
|
svn path=/trunk/KDE/kdebase/apps/; revision=829587
|
|
svn path=/trunk/KDE/kdebase/apps/; revision=828584
|
|
slot will be called as many times as we entered a directory...
svn path=/trunk/KDE/kdebase/apps/; revision=828216
|
|
svn path=/trunk/KDE/kdebase/apps/; revision=828101
|
|
svn path=/trunk/KDE/kdebase/apps/; revision=828091
|
|
svn path=/trunk/KDE/kdebase/apps/; revision=828090
|
|
widget on mouse click
svn path=/trunk/KDE/kdebase/apps/; revision=828078
|
|
svn path=/trunk/KDE/kdebase/apps/; revision=827249
|
|
the space info may never be shown
svn path=/trunk/KDE/kdebase/apps/; revision=826897
|
|
svn path=/trunk/KDE/kdebase/apps/; revision=826707
|
|
KFileItem from the URL
* don't invoke fileItem() if a multiple selection is provided
svn path=/trunk/KDE/kdebase/apps/; revision=826393
|
|
DolphinViewActionHandler, so that is used in DolphinPart and hence also in Konqueror. Thanks to Bram for the patch!
CCMAIL: [email protected]
CCMAIL: [email protected]
svn path=/trunk/KDE/kdebase/apps/; revision=826383
|
|
svn path=/trunk/KDE/kdebase/apps/; revision=826230
|
|
reverse the order
svn path=/trunk/KDE/kdebase/apps/; revision=826161
|
|
of applyImageFrame() by a factor of >2.
Hmm, previews don't look so smooth as before, but even when having a 2 GHz CPU a bilinear scaling of 1000 previews just takes too much time.
svn path=/trunk/KDE/kdebase/apps/; revision=826128
|
|
12 % (!) of the runtime in addToPreviewQueue(). The check is now done only once before starting the preview generation and when the clipboard data has been changed.
svn path=/trunk/KDE/kdebase/apps/; revision=826126
|
|
the slot where the preview has been received. This reduces the blocking of the GUI for the following usecase:
- folder with 1000 items
- ~30 items are visible
Old approach:
- Show the 30 items as soon as possible.
- Receive preview and add it to the queue. This is done asynchronously 970 times (no UI blocking).
- Iterate through 970 items, resize, apply item effect + border and apply the preview to the model (-> blocking of UI thread for more than 3 seconds).
New approach:
- Show the 30 items as soon as possible.
- Receive preview, resize it, apply item effect + border and add it to the queue. This is done asynchronously 970 times (no UI blocking).
- Iterate through 970 items and apply the preview to the model (-> UI thread is blocked only very short).
svn path=/trunk/KDE/kdebase/apps/; revision=826109
|
|
svn path=/trunk/KDE/kdebase/apps/; revision=826056
|
|
be used for showing the meta information (it depends on the current selection and whether the file item is already available).
CCMAIL: [email protected]
svn path=/trunk/KDE/kdebase/apps/; revision=825996
|
|
This prevents a flickering if the new preview can be generated within a small timeframe.
BUG: 165317
svn path=/trunk/KDE/kdebase/apps/; revision=825942
|
|
slotInfoTimeout(), as preperation for a new timer that prevents a flickering of outdated previews.
svn path=/trunk/KDE/kdebase/apps/; revision=825916
|