Ignore:
Timestamp:
Jan 9, 2019 6:09:39 AM (5 years ago)
Author:
Piotr Rozyczko <piotr.rozyczko@…>
Branches:
ESS_GUI, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_opencl, ESS_GUI_sync_sascalc
Children:
cf9f39e
Parents:
bbcf9f0
Message:

Replace Apply button menu driven functionality with additional button.
Removed Cancel.
Removed the window system context help button from all affected widgets.
SASVIEW-1239

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/Perspectives/Fitting/MultiConstraint.py

    r09e0c32 r33c0561  
    1010 
    1111from PyQt5 import QtWidgets 
     12from PyQt5 import QtCore 
    1213 
    1314import sas.qtgui.Utilities.GuiUtils as GuiUtils 
     
    2930        self.setupUi(self) 
    3031        self.setModal(True) 
     32 
     33        # disable the context help icon 
     34        windowFlags = self.windowFlags() 
     35        self.setWindowFlags(windowFlags & ~QtCore.Qt.WindowContextHelpButtonHint) 
     36 
    3137        self.params = params 
    3238        self.parent = parent 
Note: See TracChangeset for help on using the changeset viewer.