Skip to content
This repository has been archived by the owner on Apr 15, 2024. It is now read-only.

Commit

Permalink
Merge pull request #24 from takavfx/develop
Browse files Browse the repository at this point in the history
Fix inherited stylesheet at a gap between widgets.
  • Loading branch information
takavfx authored Jun 9, 2017
2 parents 6ea14f7 + 7c7328a commit ec09eff
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 11 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
!VERSION
!ChangeLog

# Ignore Specific directories
*.vscode

# Ignore Specific File Types
*.pyc
*.DS_Store
Expand Down
2 changes: 1 addition & 1 deletion docs/camSwitcher.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Cam Switcehr
# Cam Switcher

![](img/ss_cam_switcher_0001.png)

Expand Down
13 changes: 3 additions & 10 deletions python2.7libs/camSwitcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,11 @@
"""
#-------------------------------------------------------------------------------

__version__ = 'v1.1.0'
__version__ = 'v1.1.1'

#-------------------------------------------------------------------------------

import os, sys
sys.dont_write_bytecode = True

from functools import partial


from hutil.Qt import QtWidgets
from hutil.Qt import QtGui
Expand Down Expand Up @@ -43,7 +39,7 @@ def closeEvent(self, event):


def initUI(self):

self.setProperty("houdiniStyle", True)
self.setWindowTitle(self._windowTitle)

# Create Camera List Layout > self.createCamListLayout
Expand Down Expand Up @@ -131,10 +127,7 @@ def selectCam(self):
tab.viewports()[-1].setCamera(hou.node(currentItem[0].data()))
except:
pass


def closeEvent(self, event):
self.setParent(None)



class camListModel(QtCore.QAbstractListModel):
Expand Down

0 comments on commit ec09eff

Please sign in to comment.