Skip to content

Commit

Permalink
Fix apple clang complaints
Browse files Browse the repository at this point in the history
  • Loading branch information
o-sdn-o committed Dec 19, 2024
1 parent 24751fa commit 8243cec
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/vtm.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1825,7 +1825,7 @@ namespace netxs::app::vtm
{
bell::enqueue(window_ptr, [gear_id = gear.id](auto& boss) // Keep the focus tree intact while processing key events.
{
if (auto gear_ptr = boss.bell::getref<hids>(gear_id))
if (auto gear_ptr = boss.bell::template getref<hids>(gear_id))
{
auto& gear = *gear_ptr;
boss.bell::signal(tier::release, e2::form::size::minimize, gear);
Expand All @@ -1840,7 +1840,7 @@ namespace netxs::app::vtm
{
bell::enqueue(window_ptr, [gear_id = gear.id](auto& boss) // Keep the focus tree intact while processing key events.
{
if (auto gear_ptr = boss.bell::getref<hids>(gear_id))
if (auto gear_ptr = boss.bell::template getref<hids>(gear_id))
{
auto& gear = *gear_ptr;
boss.bell::signal(tier::preview, e2::form::size::enlarge::maximize, gear);
Expand All @@ -1855,7 +1855,7 @@ namespace netxs::app::vtm
{
bell::enqueue(window_ptr, [gear_id = gear.id](auto& boss) // Keep the focus tree intact while processing key events.
{
if (auto gear_ptr = boss.bell::getref<hids>(gear_id))
if (auto gear_ptr = boss.bell::template getref<hids>(gear_id))
{
auto& gear = *gear_ptr;
boss.bell::signal(tier::preview, e2::form::size::enlarge::fullscreen, gear);
Expand Down
4 changes: 2 additions & 2 deletions src/vtm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -457,8 +457,8 @@ R"==(
<key="" action=AlwaysOnTopWindow/><!-- Toggle AlwaysOnTop flag on all focused windows. -->
<key="" action=CloseWindow/> <!-- Close all focused desktop windows. -->
<key="" action=MinimizeWindow/> <!-- Minimize all focused desktop windows. -->
<key="" action=MaximizeWindow/> <!-- Maximize all focused desktop windows. -->
<key="" action=FullscreenWindow/> <!-- Fullscreen the first focused desktop window. -->
<key="Esc+F11" action=MaximizeWindow/> <!-- Maximize all focused desktop windows. -->
<key="Esc+F12" action=FullscreenWindow/> <!-- Fullscreen the first focused desktop window. -->

<key=""><action=WarpWindow data="0,0,0,0"/></key> <!-- Warp desktop window. The data parameter specifies four deltas for the left, right, top and bottom window sides. -->
<key="Esc+LeftArrow"> <action=WarpWindow data=" 1,-1, 0, 0"/></key> <!-- Move window to the left. -->
Expand Down

0 comments on commit 8243cec

Please sign in to comment.