Summary: | An option to turn off tooltips in folder view | ||
---|---|---|---|
Product: | [Unmaintained] plasma4 | Reporter: | Michal Ziabkowski <mziab> |
Component: | widget-folderview | Assignee: | Bruno Bigras <bigras.bruno> |
Status: | RESOLVED FIXED | ||
Severity: | wishlist | CC: | alpha_one_x86, anarchic.teapot, bigras.bruno, bugs.kde.org3, bugzilla, chgonzalezg, cruzki123, david.voigt, dth, ghoulsblade, karye2004, qwertymaniac, scott.stubbs, solidpace, timorei, toddrpartridge, vdub12, vlada.matena |
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Gentoo Packages | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Michal Ziabkowski
2009-05-15 20:51:22 UTC
*** Bug 196467 has been marked as a duplicate of this bug. *** As my wish has been marked as duplicate of this I'm adding my wish here again: It would be nice to be able to disable the preview tooltips for folders and the tooltips for application links on the desktop independently from each other and independently for every folderview widget (including the folderview desktop). I'd expect to find this option in the configuration of each folderview widget/activity in its Display section. *** Bug 203305 has been marked as a duplicate of this bug. *** *** This bug has been confirmed by popular vote. *** I have to agree, There should be a way to turn this feature off. Its quite annoying. Every update since i installed the 4.3 beta I have been looking for a way to disable this. Honestly I love 4.3 this is the only problem I have and a simple disable in the folderview settings would make 4.3 perfect. Yes, please allow us to turn this off. I really find it quite annoying that I'm not given this option. It would be very nice to have this disabled. I have nfs share mounted with autofs and links pointing into this share from desktop. Every movement over those links makes autofs to mount the nfs and freezes whole plasma for the time needed to mount nfs. This can be solved by making proper link to nfs device using a .desktop file, but this cannot point inside the share. .desktop files pointing to NFS have this previews disabled. I would like to agree with the earlier comments, please do let us disable this feature. It is extremely annoying! Find this blocking what I need to do at times too. Big popup comes up, knows what it wants me to do. Open said folder and popup has to be circumvented then wait a few to it going away. A folder view option would be definitely appreciated. it is annoying there's no options to turn it off. such features should automatically come with options. basicaly, i'm not against such features, it might please some.. but customizability is the key, since one look/behavior can not please everyone. tnx I posted a dirty little hack to turn off the popup for folders and links to folders here. As far as I can tell everything is working like I want it to: No popups but the drag and drop and everything is working just fine, tooltips for files still appear. http://ubuntuforums.org/showpost.php?p=8109195&postcount=15 It's a lot more readable in the forum, but I don't want to force you to go there - so here is what I have done: apt-get source kdebase cd kdebase-4.3.2 vim apps/plasma/applets/folderview/iconview.cpp (line 1297,8,9 changed to:) // if (!m_popupView || m_hoveredIndex != m_popupIndex) { // m_toolTipShowTimer.start(500, this); // } (line 1339 changed, 1340 added:) //type = IconView::FolderTip; return; mkdir kdebase cd kdebase cmake .. -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` make -j 2 sudo make install +1 The preview should be disabled by default, thx! *** Bug 214553 has been marked as a duplicate of this bug. *** I was a little surprised that there wasn't an option to turn it off. My issue is the same, that it gets in the way when I want to double click on a folder. So a solution that would prevent that from happening (disabling isn't necessary) is all I want, like perhaps an adjustable amount of time that is needed to expire with the mouse hovering over the icon before it will open the FolderTip. Actually fixing the position to not overlap the icon itself would be sufficient: Regular tooltips are adjacent to the icons boundaries. Folder view popup has its corner in the middle of the icon, overlapping it. Overlapping an interactive GUI element with another interactive one is just BAD design, imho. I, personally, don't have much use for this but can see the reason why some people could find it useful. I'd been thinking that to keep this un-obstructive that either: 1) Allow an option to turn it off. 2) Create a secondary trigger mechanism that will enable it (possibly middle-click on the mouse button?). bbigras worked on a patch not long ago for the same: http://reviewboard.kde.org/r/2176/diff/ Appears to be discarded at the moment for a better solution, so perhaps the #2 suggestion by Todd is the way to go? Personally, I'd like a configuration option. A key (like middle click) would make it less intuitive for those who use it. (In reply to comment #17) > bbigras worked on a patch not long ago for the same: > http://reviewboard.kde.org/r/2176/diff/ > > Appears to be discarded at the moment for a better solution, so perhaps the #2 > suggestion by Todd is the way to go? My patch was discarded since we agreed at that time that it could be better if it would use an icon likes the new 'select' icon (which I barely had time to implement before the hard freeze). I will work on it when the freeze is over. Well, in KDE 4.4 RC 1 I can turn the previews of in Dolphin. However I love a classic icon-based desktop so on the desktop plasmas I just have one folder displayed "Desktop". On there, I still can't turn the preview popups of and it's really annoying. I know where I have my stuff and hence I don't need previews. Same here too, I need it for the plasma I'd like to have an option to turn it off. It's really annoying and it disrupts the workflow. I registered this account just to vote for this bug. (In reply to comment #21) > I'd like to have an option to turn it off. It's really annoying and it disrupts > the workflow. I registered this account just to vote for this bug. I'm planning to do this for 4.5 [1]. I will add an icon to open the tooltip so it won't open automatically anymore. By the way, thanks to everyone voting for bugs/features, it does help to motivate developers like me to spend a little bit of my limited free time. [1] http://techbase.kde.org/Schedules/KDE4/4.5_Feature_Plan#kdebase-workspace Hi Bruno Thx for taking this into consideration. As said, while I find them annoying on my own computer (as I know where I store my things) I tend to think that when I have to use someone else's computer it may come in handy. Adding an tooltip icon like you suggest seems to be the best solution for everyone. Those that want to see the inside, click the icon and that don't want to see, don't click it. Thx :) (In reply to comment #22) Thanks Bruno, I'm looking forward to version 4.5. And thanks for providing feedback to the reporters, it surely encourages to report more often and generally be more engaged in the process. SVN commit 1124317 by fredrik: - Show regular tooltips for folders except when dragging icons. - Add an action button in the icon overlay that opens the folder popup. BUG: 192821 BUG: 212882 M +45 -14 actionoverlay.cpp M +8 -3 actionoverlay.h M +5 -0 asyncfiletester.cpp M +77 -73 iconview.cpp M +3 -4 iconview.h WebSVN link: http://websvn.kde.org/?view=rev&revision=1124317 |