Report a Bug with Trove

You need to be logged in to report a bug!

T-10: if you scroll down a crafting bench, or the claims window when you hover over an item the tooltip moves up

No Description

Details

Category:

Live

Status:

Acknowledged
Acknowledged by The Trove Team as a bug

Reporter:

Etaew

Etaew

Created

Updated

Apr 1, 2021

Jan 17, 2022

Source

Trigger
:TakingNote:
Text

Etaew 4 years ago Ticket T-10 Other Messages Raw Message View on Discord

Array
(
    [id] => 827187121642799145
    [type] => 0
    [content] => On my crafting bench, the tooltip for items, don't appear next to items as I expect it to.
    [channel_id] => 812354696320647238
    [author] => Array
        (
            [id] => 117951235423731712
            [username] => Etaew
            [avatar] => a7cf03209f7484574d965a9cb1a3f79c
            [discriminator] => 8525
            [public_flags] => 514
        )

    [attachments] => Array
        (
            [0] => Array
                (
                    [id] => 827187119243395132
                    [filename] => unknown.png
                    [size] => 231499
                    [url] => https://cdn.discordapp.com/attachments/812354696320647238/827187119243395132/unknown.png
                    [proxy_url] => https://media.discordapp.net/attachments/812354696320647238/827187119243395132/unknown.png
                    [width] => 607
                    [height] => 581
                    [content_type] => image/png
                )

        )

    [embeds] => Array
        (
        )

    [mentions] => Array
        (
        )

    [mention_roles] => Array
        (
        )

    [pinned] => 
    [mention_everyone] => 
    [tts] => 
    [timestamp] => 2021-04-01T14:26:18.193000+00:00
    [edited_timestamp] => 
    [flags] => 0
    [components] => Array
        (
        )

    [reactions] => Array
        (
            [0] => Array
                (
                    [emoji] => Array
                        (
                            [id] => 817507868956688406
                            [name] => TakingNote
                        )

                    [count] => 1
                    [me] => 
                )

        )

)
image/png (226.07 KB) https://cdn.discordapp.com/attachments/812354696320647238/827187119243395132/unknown.png

On my crafting bench, the tooltip for items, don't appear next to items as I expect it to.

1

Issue Details

Activity
3 years ago Etaew changed status from Reported to Acknowledged

No images have been added yet, upload one!

Comments and Likes Comments 3

You must be logged in to add a comment.

why this bug isnt fixed to right now >< why
This bug was caused by the following change in the Crack the Court update:
"Collection tooltips will no longer fly off the top of the screen at odd window sizes."

Here's the fix for this in all relevant UIs.
(all var names are just based on the type of the variable since the decompiled functions don't have variable names)

crafting.swf :: RecipePane.as -> rollOverSlot():
- Change the call at the end of the function to be the following:
ExternalInterface.call("RECIPES.POINTER_ENTER", slotBasic.data, point.x, point.y);

collectionsnew.swf :: CollectableRow.as -> onSlotRollOver():
- Change the call at the end of the function to be the following:
ExternalInterface.call("OnSlotEnter", slot.data, point1.x + point2.x, point1.y);

[untested] claims.swf :: _kiwi.Controls.Slot.as -> handleRollOver():
- Change the first ExternalInterface call to be the following:
ExternalInterface.call("SLOT.POINTER_ENTER", this.data, point1.x + point2.x, point1.y);
hope it fixed