You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Preference panes (e.g. QSCatalogPrefPane) are instantiated in one of two ways:
[QSCatalogPrefPane sharedInstance]
By [nib instantiateNibWithOwner:self topLevelObjects:&objects]; in QSPreferencePane.m:L99
This means that two instances of QSCatalogPrefPane will be lying around, potentially causing issues with opening them up. There should only be one that exists.
The text was updated successfully, but these errors were encountered:
Just making a note here for future reference:
Preference panes (e.g. QSCatalogPrefPane) are instantiated in one of two ways:
[QSCatalogPrefPane sharedInstance]
[nib instantiateNibWithOwner:self topLevelObjects:&objects];
in QSPreferencePane.m:L99This means that two instances of QSCatalogPrefPane will be lying around, potentially causing issues with opening them up. There should only be one that exists.
The text was updated successfully, but these errors were encountered: