diff options
| author | Tomas Bzatek <tbzatek@redhat.com> | 2025-11-28 21:36:41 +0100 |
|---|---|---|
| committer | Tomas Bzatek <tbzatek@redhat.com> | 2025-11-28 21:36:41 +0100 |
| commit | 69dd2b81de3bcbb955669f7937f3844b86467849 (patch) | |
| tree | 1fdca6cce755961766f7436e2c83041710dca2b4 /UPreferences.pas | |
| parent | 0ea64a41e1499d25296bdcc69fe207e20e545efd (diff) | |
| download | tuxcmd-69dd2b81de3bcbb955669f7937f3844b86467849.tar.xz | |
Port process spawning to g_spawn_*()
Diffstat (limited to 'UPreferences.pas')
| -rw-r--r-- | UPreferences.pas | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/UPreferences.pas b/UPreferences.pas index deee0f0..50b2e29 100644 --- a/UPreferences.pas +++ b/UPreferences.pas @@ -22,9 +22,8 @@ unit UPreferences; interface uses - SysUtils, Classes, lazgdk3, lazgtk3, lazpango1, GTKControls, GTKForms, GTKStdCtrls, GTKExtCtrls, - GTKUtils, GTKDialogs, GTKPixbuf, GTKClasses, GTKMenus, - ULibc; + SysUtils, Classes, unixtype, ULibc, lazgdk3, lazgtk3, lazpango1, GTKControls, GTKForms, GTKStdCtrls, GTKExtCtrls, + GTKUtils, GTKDialogs, GTKPixbuf, GTKClasses, GTKMenus; type TFPreferences = class(TGTKDialog) @@ -45,7 +44,7 @@ type ClearROAttr, DisableMouseRename, ShowFiletypeIcons, DefaultFontCheckBox, DefaultRowHeightCheckBox, LynxLikeMotionCheckBox, DirsInBoldCheckBox, NewStyleAltOCheckBox, DisableFileTipsCheckBox, DisableDirectoryBracketsCheckBox, InsertMovesDownCheckBox, SpaceMovesDownCheckBox, SelectAllDirectoriesCheckBox, ShowFuncButtonsCheckBox, - OctalPermissionsCheckBox, FocusRefreshCheckBox, CompatUseLibcSystemCheckBox: TGTKCheckButton; + OctalPermissionsCheckBox, FocusRefreshCheckBox: TGTKCheckButton; NormalItemFGColorDefault, ActiveItemFGColorDefault, InactiveItemFGColorDefault, LinkItemFGColorDefault, DotFileItemFGColorDefault: TGTKCheckButton; HBox1, HBox2, HBox3, HBox4: TGTKHBox; @@ -1013,13 +1012,6 @@ begin FocusRefreshCheckBox.MarginTop := 2; FocusRefreshCheckBox.MarginBottom := 2; Grid6.AddControl(0, 0, 1, 1, FocusRefreshCheckBox); - CompatUseLibcSystemCheckBox := TGTKCheckButton.CreateWithLabel(Self, LANGPreferencesCompatUseLibcSystemCheckBox_Caption); - CompatUseLibcSystemCheckBox.Tooltip := LANGPreferencesCompatUseLibcSystemCheckBox_Tooltip; - CompatUseLibcSystemCheckBox.MarginStart := 30; - CompatUseLibcSystemCheckBox.MarginEnd := 30; - CompatUseLibcSystemCheckBox.MarginTop := 2; - CompatUseLibcSystemCheckBox.MarginBottom := 2; - Grid6.AddControl(0, 2, 1, 1, CompatUseLibcSystemCheckBox); // ****************** @@ -1174,7 +1166,6 @@ begin ViewerX11AppComboBox.ItemIndex := ConfViewerTerminalBehaviour; EditorX11AppComboBox.ItemIndex := ConfEditorTerminalBehaviour; FocusRefreshCheckBox.Checked := ConfFocusRefresh; - CompatUseLibcSystemCheckBox.Checked := ConfUseLibcSystem; CustomTimeFormatEntry.Text := ConfCustomTimeFormat; CustomDateFormatEntry.Text := ConfCustomDateFormat; @@ -1245,7 +1236,6 @@ begin ConfViewerTerminalBehaviour := ViewerX11AppComboBox.ItemIndex; ConfEditorTerminalBehaviour := EditorX11AppComboBox.ItemIndex; ConfFocusRefresh := FocusRefreshCheckBox.Checked; - ConfUseLibcSystem := CompatUseLibcSystemCheckBox.Checked; ConfDisableFileTips := DisableFileTipsCheckBox.Checked; ConfShowFuncButtons := ShowFuncButtonsCheckBox.Checked; |
