mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-05 04:58:15 +02:00
LCL: GTK2: Using nboKeyboardTabSwitch in TabControl options and <Ctrl> + <Tab> now working.
git-svn-id: trunk@56130 -
This commit is contained in:
parent
11aad71dab
commit
9abb167fde
@ -788,11 +788,13 @@ begin
|
||||
begin
|
||||
if Shift = [ssCtrl] then
|
||||
begin
|
||||
Key := 0;
|
||||
PageIndex := (PageIndex + 1) mod PageCount;
|
||||
Exit;
|
||||
end
|
||||
else if Shift = [ssCtrl, ssShift] then
|
||||
begin
|
||||
Key := 0;
|
||||
PageIndex := (PageIndex + PageCount - 1) mod PageCount;
|
||||
Exit;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user