-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
{On hold} v1.4.2_rdo7 to v1.9.1_rdo #11
base: master
Are you sure you want to change the base?
Conversation
…e publish name We allow multiple tasks to produce the same output so we just want to display one stream of publishes for a given name. Our publish system being name based two different publishes can't share the same name. They may be from different departments (cmm or layout cameras) but then they are just two different versions of the same output.
I tweaked the _on_before_paint method to allow easy customization of the delegate through inheritance. Subclasses just have to override the get_name_string and get_details_string methods to change what's painted in the item.
Filter Loader by Status
dialog: dynamically create status filter list
I need to rename everything named with |
@@ -143,3 +143,4 @@ requires_engine_version: | |||
frameworks: | |||
- {"name": "tk-framework-shotgunutils", "version": "v4.x.x"} | |||
- {"name": "tk-framework-qtwidgets", "version": "v2.x.x"} | |||
- {"name": "tk-framework-rdo", 'version': "v0.0.x"} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we want to share our framework? It is used only for the icons right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From Julien (in git colony):
It's used for the icons and for the custom widget we use for the load options. We won't share it
If we want to share that with Shotgun, we might want to make the status filter update faster. When we open the loader, it takes a lot of time to get the number of items for each status, which is quite annoying. |
@@ -0,0 +1,80 @@ | |||
# Copyright (c) 2013 Shotgun Software Inc. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Test notes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
!fix
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
!resolved
…on in list view (RPS-243)
…pp settings (RPS-243)
7a85ae0
to
fc3ef08
Compare
Initial PR was #10 but shotgunsoftware#111 has a better version, nicely integrated with new changes, with sme changes made by me. Nothing major, just changes the search widget to avoid code duplication and a little UI bug in XSI. |
@@ -276,6 +272,18 @@ def __init__(self, action_manager, parent=None): | |||
show_details = self._settings_manager.retrieve("show_details", False) | |||
self._set_details_pane_visiblity(show_details) | |||
|
|||
# Add rdo custom UI | |||
hlayout = QtGui.QHBoxLayout() | |||
spacerItem = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🐫Case
As discussed with Julien, I merged our changes into shotgun changes to be able to send them our version.
First 8 commits have been cherry-picked from
master_rdo
. My commits are for the publishes search which needed a little cleanup and merged some stuff to avoid code duplication.I still need to add one or two line to make the zoom slider (when in thumb view) disappear when we switch in list view.
This change is