this quick change will make sure the Tracker Desktop window is opened behind all other windows and stays there, just to make life easier for Axel when I is representing the thing...
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13491 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
ddc2cfeff0
commit
25685e7e5f
@ -685,6 +685,9 @@ WinBorder::QuietlySetFeel(int32 feel)
|
||||
fLevel = B_MODAL_ALL;
|
||||
break;
|
||||
|
||||
// TODO: This case is bogus, since I'm sure "feel"
|
||||
// is being represented by uint32 somewhere before
|
||||
// this function is used. And B_SYSTEM_LAST is defined -10. -Stephan
|
||||
case B_SYSTEM_LAST:
|
||||
fLevel = B_SYSTEM_LAST;
|
||||
break;
|
||||
@ -693,6 +696,10 @@ WinBorder::QuietlySetFeel(int32 feel)
|
||||
fLevel = B_SYSTEM_FIRST;
|
||||
break;
|
||||
|
||||
case 1024:
|
||||
fLevel = B_SYSTEM_LAST;
|
||||
break;
|
||||
|
||||
default:
|
||||
fLevel = B_NORMAL;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user