Home Website Youtube GitHub

Anim Picker UI buttons hidden

Anim Picker -> Edit Anim Picker

Load and Save widget overlays are hidden:

using mgear 3.6.0 on osx

This is a known issue. It is already fixed for the next release.
For the moment the workaround is just to make the window bigger :slight_smile:

The picker window is docked under the ‘Load Picker’ button, no matter how far you stretch the window it still stays on top of the button; at least this is the behavior I see on OSX which has plenty of qt UI issues for sure. I will use our custom picker UI for now until next release.

Thanks for the 3.6.5 hotfix.

I can get a little further in the interface but the widget window is still docked incorrectly. Is there a button missing or hidden here?:

Could you point me to the code where the widget windows get docked in the UI and I can try to move it somewhere else and fix it for OSX?

yes, 2 buttons are missing
image
I have an old Mac min. I will check there. @Count_zer0 may I know the Maya version that you are using?

@Rafael can you point to @Count_zer0 where is the code ? Thanks!

I’m using Maya 2018.7 osx. Same behavior in 2017 as well.

Hello @Count_zer0
Sorry you are encountering issues. I do not have a macOs machine to test on myself. But hopefully this code snippet can help you out.

from mgear import anim_picker
pkr_ui = anim_picker.load(edit=True, dockable=False)
# load ui
pkr_ui.load_widget.show()
# save ui
pkr_ui.save_widget.show()

# To see what you have access to. Linked below in more detail
dir(pkr_ui.save_widget)

Let me know if this helps or if you see what might be causing the issue so we can fix!

1 Like

There’s a bug in the tab_widget:

    def add_tab_widget(self, name="default"):
    '''Add control display field
    '''
    self.tab_widget = ContextMenuTabWidget(self, main_window=self)
    self.main_vertical_layout.addWidget(self.tab_widget)

It draws on top of the overlay widgets. I’ve spent 2 days trying to reverse engineer this ui code and can’t get the tab to go away or move around. Another dev needs to run this on OSX and fix this.

I’m moving onto cgmTools until it gets done.

1 Like

Hi @Count_zer0 Thanks for the feedback.

I have logged it on GitHub https://github.com/mgear-dev/anim_picker/issues/34

Hey @Count_zer0

This may have been solved with this recent commit

3 Likes

It does, indeed, solve. Thank you!

2 Likes