mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-29 08:23:01 +01:00
add 10 pixels of track height to facilitate easier grabbing of the track headers for resizing
git-svn-id: svn://localhost/ardour2/branches/3.0@13632 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
014540a096
commit
737e40a56f
1 changed files with 4 additions and 4 deletions
|
|
@ -1249,13 +1249,13 @@ TimeAxisView::preset_height (Height h)
|
|||
{
|
||||
switch (h) {
|
||||
case HeightLargest:
|
||||
return (button_height * 2) + extra_height + 250;
|
||||
return (button_height * 2) + extra_height + 260;
|
||||
case HeightLarger:
|
||||
return (button_height * 2) + extra_height + 150;
|
||||
return (button_height * 2) + extra_height + 160;
|
||||
case HeightLarge:
|
||||
return (button_height * 2) + extra_height + 50;
|
||||
return (button_height * 2) + extra_height + 60;
|
||||
case HeightNormal:
|
||||
return (button_height * 2) + extra_height;
|
||||
return (button_height * 2) + extra_height + 10;
|
||||
case HeightSmall:
|
||||
return button_height + extra_height;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue