topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Friday March 29, 2024, 4:31 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: pasted favorites clips crowd in top of the Quick Paste Pop-up Menu [bug?]  (Read 5959 times)

leopoldus

  • Participant
  • Joined in 2010
  • *
  • Posts: 12
    • View Profile
    • Donate to Member
Hello!

It seems, that there is a bug in CHS. If you have some ordered favorite clips and paste any of them several times (two or more) in a short time interval, this clip automatically goes the most top place in the Quick Paste Pop-up Menu and gets sticked there firmly, so new items just copied to clipboard get lower places (thus higher order numbers) than this sticked favorite clip. If you do than the same with another favorite clip, it goes up as well and take the place nr 1 before the previous - and so on, so you'll get at last the whole crowd of favorites in the beginning of the Quick Paste Pop-up Menu. It repeats every time with every favorite clips.

After tens of attempts and tests the only way I could invent to remove this favorite (or these favorites) from the Quick Paste Pop-up Menu is to delete them and their duplicates totally from any folder from CHS database.

At first I thought this to b a feature, but now I suspect, that it is a bug, because I could not any reasonable way neither to control this behavior nor to remove these clips from to top positions of the list. Have I missed anything?

Thanks!

P.S.
What font (fontface and size) is used hear at this forum? It looks very pretty for, so I'd consider to use it in some my documents.

leopoldus

  • Participant
  • Joined in 2010
  • *
  • Posts: 12
    • View Profile
    • Donate to Member
Now as a result of some my experiments with CHS database I have got again a similar (not the same) issue, as I've described in my old post a half of year ago.

I had to remove temporarily all my favorites clips and than put them back. Now they all are sticked at the beginning (at the top) of the Quick Paste Menu. I've spent a lot of time in order to get rid of them, but every of my different tests has failed.

Well, I can easily delete one on several clips from favorites list and than they naturally disappear from the Quick Paste Menu list too. But when I put the clip back to favorites list, the second copy of it immediately goes to to the top of the list Quick Paste Menu list too.

Now I have no any other idea, what to try. :(  And as one can see, I virtually can not use CHS, as last copied clips are buried somewhere in the depths under sticked favorites clips list at the top of the Quick Paste Menu.

Am I the only person, who suffers from this bug?  :tellme:

mouser

  • First Author
  • Administrator
  • Joined in 2005
  • *****
  • Posts: 40,896
    • View Profile
    • Mouser's Software Zone on DonationCoder.com
    • Read more about this member.
    • Donate to Member
So you are saying that newer clips still appear UNDER older Favorite clips in the quick paste menu?
Try this: Go to your "Quick Paste" group in the main window tree panel, right click it and choose Edit, to edit the Quick Paste group.
Now paste a screenshot of that Group Edit dialog.
Maybe the sorting is wrong.

leopoldus

  • Participant
  • Joined in 2010
  • *
  • Posts: 12
    • View Profile
    • Donate to Member
Now paste a screenshot of that Group Edit dialog.
Maybe the sorting is wrong.
Here is the screenshot of this dialog:

http://s14.directupload.net/images/141006/rof8upl5.gif
pasted favorites clips crowd in top of the Quick Paste Pop-up Menu [bug?]
 

mouser

  • First Author
  • Administrator
  • Joined in 2005
  • *****
  • Posts: 40,896
    • View Profile
    • Mouser's Software Zone on DonationCoder.com
    • Read more about this member.
    • Donate to Member
My QuickPaste has an SQL of:

NOT (IsInRecyleBin) AND CreationDateTime > DateTimeMinusOneDay AND (IsFavorite=false)

I'm quite sure that's your problem , though to be honest I'm going to have to look back into the code to figure out why that would result in the favorites showing at the top..  Might be something I have to fix.

Regardless, try chaging your sql for that group to what is shown above, that should fix it.  HMMM.. could be wrong here, i see that YOUR version is the one that comes with CHS, so that shouldn't have any effect on the POSITION of the favorites in the quick paste menu.

« Last Edit: October 06, 2014, 08:52 AM by mouser »

mouser

  • First Author
  • Administrator
  • Joined in 2005
  • *****
  • Posts: 40,896
    • View Profile
    • Mouser's Software Zone on DonationCoder.com
    • Read more about this member.
    • Donate to Member
Ok so my new theory:

You probably manually set the ORDERING column value for your favorites, to values that you use to sort them.
But you've probably made those values lower than new clip ORDERING values of 0.
The QuickPaste menu obeys the ordering of the QuickPaste group, so its putting all favorites at top.
If you go into the QuickPaste group you will probably see your Favorites items at the top if sorted by the Order column.

Simple Solution:
Edit the QuickPaste group, change the Custom Menu Sorting SQL from "Ordering,ModificationDateTime" to "ModificationDateTime"

That should solve it.

leopoldus

  • Participant
  • Joined in 2010
  • *
  • Posts: 12
    • View Profile
    • Donate to Member
You probably manually set the ORDERING column value for your favorites, to values that you use to sort them.

Yes, that is exactly what I've done.

But you've probably made those values lower than new clip ORDERING values of 0.

The QuickPaste menu obeys the ordering of the QuickPaste group, so its putting all favorites at top.

Do you mean, that I have assigned to them negative values ("lower than 0")? No, I've assigned to my favorite clips manually natural numbers as 3, 4, 5 etc.

If you go into the QuickPaste group you will probably see your Favorites items at the top if sorted by the Order column.

No, it is not so. They Favorites are there in the list in QuickPaste group, but not on the top, but are they are distributed at different places among regular clips.


Simple Solution:
Edit the QuickPaste group, change the Custom Menu Sorting SQL from "Ordering,ModificationDateTime" to "ModificationDateTime"
That should solve it.

Anyway this trick you have suggested has solved the matter. Thanks!
Here we can see, that sometimes a bit inaccurate assumptions can lead to a correct conclusion/solution. ;)

mouser

  • First Author
  • Administrator
  • Joined in 2005
  • *****
  • Posts: 40,896
    • View Profile
    • Mouser's Software Zone on DonationCoder.com
    • Read more about this member.
    • Donate to Member
Glad it worked; i see now that the grid order is not affected by that SQL, it's only the popup menus that are; so i am changing the default ordering for QuickPaste for new users to the same as you have just changed yours -- seems more reasonable.