mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-06 21:00:22 +00:00
4816 remove tool tips due to being useless
This commit is contained in:
parent
e52f72aeab
commit
000dc349d3
@ -180,14 +180,12 @@ Func Redraw()
|
|||||||
If $selectedAlgName == $allAlgorithmNames[2] Then ;"One Data Source Per Folder"
|
If $selectedAlgName == $allAlgorithmNames[2] Then ;"One Data Source Per Folder"
|
||||||
ChangeToDefaultGUI()
|
ChangeToDefaultGUI()
|
||||||
GUICtrlSetData($descriptionArea, GetAlgorithmDescription(2))
|
GUICtrlSetData($descriptionArea, GetAlgorithmDescription(2))
|
||||||
GUICtrlSetTip($algorithmComboBox, "Creates multiple manifest files for one case")
|
|
||||||
ElseIf $selectedAlgName == $allAlgorithmNames[0] Then ;"Single Data Source"
|
ElseIf $selectedAlgName == $allAlgorithmNames[0] Then ;"Single Data Source"
|
||||||
ChangeToSingleDataSourceGUI()
|
ChangeToSingleDataSourceGUI()
|
||||||
GUICtrlSetData($descriptionArea, GetAlgorithmDescription(0))
|
GUICtrlSetData($descriptionArea, GetAlgorithmDescription(0))
|
||||||
ElseIf $selectedAlgName == $allAlgorithmNames[1] Then ;"Folder of Logical Files"
|
ElseIf $selectedAlgName == $allAlgorithmNames[1] Then ;"Folder of Logical Files"
|
||||||
ChangeToFolderOfLogicalFilesGUI()
|
ChangeToFolderOfLogicalFilesGUI()
|
||||||
GUICtrlSetData($descriptionArea, GetAlgorithmDescription(1))
|
GUICtrlSetData($descriptionArea, GetAlgorithmDescription(1))
|
||||||
|
|
||||||
EndIf
|
EndIf
|
||||||
EndFunc ;==>AlgorithmComboBox
|
EndFunc ;==>AlgorithmComboBox
|
||||||
|
|
||||||
@ -199,7 +197,7 @@ Func ChangeToSingleDataSourceGUI()
|
|||||||
GUICtrlSetState($caseNameLabel, $GUI_SHOW)
|
GUICtrlSetState($caseNameLabel, $GUI_SHOW)
|
||||||
GUICtrlSetOnEvent($browseButton, "BrowseForDataSourceFile")
|
GUICtrlSetOnEvent($browseButton, "BrowseForDataSourceFile")
|
||||||
GUICtrlSetState($generateManifestButton, $GUI_DISABLE)
|
GUICtrlSetState($generateManifestButton, $GUI_DISABLE)
|
||||||
GUICtrlSetTip($algorithmComboBox, "Creates a single manifest file for a single case")
|
|
||||||
EndFunc
|
EndFunc
|
||||||
|
|
||||||
;Change the controls displayed in the GUI to the ones needed for the Folder of Logical Files algorithm
|
;Change the controls displayed in the GUI to the ones needed for the Folder of Logical Files algorithm
|
||||||
@ -211,7 +209,6 @@ Func ChangeToFolderOfLogicalFilesGUI()
|
|||||||
GUICtrlSetState($caseNameLabel, $GUI_SHOW)
|
GUICtrlSetState($caseNameLabel, $GUI_SHOW)
|
||||||
GUICtrlSetOnEvent($browseButton, "Browse")
|
GUICtrlSetOnEvent($browseButton, "Browse")
|
||||||
GUICtrlSetState($generateManifestButton, $GUI_DISABLE)
|
GUICtrlSetState($generateManifestButton, $GUI_DISABLE)
|
||||||
GUICtrlSetTip($algorithmComboBox, "Creates a single manifest file for a single case")
|
|
||||||
EndFunc
|
EndFunc
|
||||||
|
|
||||||
;Change the controls displayed in the GUI to the ones needed for One Data Source Per Folder
|
;Change the controls displayed in the GUI to the ones needed for One Data Source Per Folder
|
||||||
@ -226,7 +223,6 @@ Func ChangeToDefaultGUI()
|
|||||||
;rename to RootDirectory to root directory
|
;rename to RootDirectory to root directory
|
||||||
;hide case name field
|
;hide case name field
|
||||||
GUICtrlSetState($generateManifestButton, $GUI_DISABLE)
|
GUICtrlSetState($generateManifestButton, $GUI_DISABLE)
|
||||||
GUICtrlSetTip($algorithmComboBox, "Creates multiple manifest files for one case")
|
|
||||||
EndFunc
|
EndFunc
|
||||||
|
|
||||||
;ensure that all fields for the selected algorithm are valid
|
;ensure that all fields for the selected algorithm are valid
|
||||||
|
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user