def popdown(self, immediate=False):
     if immediate:
         self._secondary_anim.stop()
         # to suppress glitches while later re-opening
         self.set_palette_state(self.PRIMARY)
         if self._widget:
             self._widget.size_request()
     PaletteWindow.popdown(self, immediate)
Exemple #2
0
 def popdown(self, immediate=False):
     if immediate:
         self._secondary_anim.stop()
         # to suppress glitches while later re-opening
         self.set_palette_state(self.PRIMARY)
         if self._widget:
             self._widget.size_request()
     PaletteWindow.popdown(self, immediate)
Exemple #3
0
    def popdown(self, immediate=False, state=None):
        '''
        Popdown (or show the full contents of) the palette.

        Keyword Args:
            immediate (bool): if True, the palette will be shown instantly (as
                if the user right clicked the item).  If False, the palette
                will be shown after the usual activation wait time.

        .. deprecated:: 0.109
            The state keyword argument is deprecated.  The old
            secondary state has become the only state.
        '''
        if immediate:
            if self._widget:
                self._widget.size_request()
        PaletteWindow.popdown(self, immediate)
Exemple #4
0
    def popdown(self, immediate=False, state=None):
        '''
        Popdown (or show the full contents of) the palette.

        Keyword Args:
            immediate (bool): if True, the palette will be shown instantly (as
                if the user right clicked the item).  If False, the palette
                will be shown after the usual activation wait time.

        .. deprecated:: 0.109
            The state keyword argument is deprecated.  The old
            secondary state has become the only state.
        '''
        if immediate:
            if self._widget:
                self._widget.size_request()
        PaletteWindow.popdown(self, immediate)
 def popdown(self, immediate=False):
     if immediate:
         if self._widget:
             self._widget.size_request()
     PaletteWindow.popdown(self, immediate)