Ignore:
Timestamp:
08/11/23 14:39:35 (9 months ago)
Author:
István Váradi <ivaradi@…>
Branch:
python3
Phase:
public
Message:

The browser cache can be cleared from the menu (re #368)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/gui/flight.py

    r1087 r1097  
    40014001        self._container.hide()
    40024002        self._browser = None
     4003
     4004    def finalizeCEF(self):
     4005        """Close the CEF browser."""
     4006        if self._browser is not None:
     4007            self._container.hide()
     4008            self._browser.CloseBrowser(True)
     4009            self._browser = None
    40034010
    40044011#-----------------------------------------------------------------------------
     
    67396746        self.gui.rtoToggled(indicated)
    67406747
     6748    def finalizeCEF(self):
     6749        """Called when any CEF browsers should be finalized."""
     6750        self._simBriefingPage.finalizeCEF()
     6751
    67416752    def _connectSimulator(self, simulatorType):
    67426753        """Connect to the simulator."""
Note: See TracChangeset for help on using the changeset viewer.