mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-07 02:58:17 +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
|
begin
|
||||||
if Shift = [ssCtrl] then
|
if Shift = [ssCtrl] then
|
||||||
begin
|
begin
|
||||||
|
Key := 0;
|
||||||
PageIndex := (PageIndex + 1) mod PageCount;
|
PageIndex := (PageIndex + 1) mod PageCount;
|
||||||
Exit;
|
Exit;
|
||||||
end
|
end
|
||||||
else if Shift = [ssCtrl, ssShift] then
|
else if Shift = [ssCtrl, ssShift] then
|
||||||
begin
|
begin
|
||||||
|
Key := 0;
|
||||||
PageIndex := (PageIndex + PageCount - 1) mod PageCount;
|
PageIndex := (PageIndex + PageCount - 1) mod PageCount;
|
||||||
Exit;
|
Exit;
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user