Skip to content

Commit

Permalink
fix connection triggger function syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
smk762 committed Jun 14, 2024
1 parent 26ac678 commit f2b86e0
Showing 1 changed file with 19 additions and 7 deletions.
26 changes: 19 additions & 7 deletions atomic_defi_design/Dex/Exchange/Trade/OrderBook/List.qml
Original file line number Diff line number Diff line change
Expand Up @@ -72,16 +72,28 @@ Item
}

Connections {
target: API.app.trading_pg
target: API.app.trading_pg;

function onMarketModeChanged: {
if (isAsk) quickscroll_timer.start()
function onMarketModeChanged()
{
if (isAsk)
{
quickscroll_timer.start()
}
}
function onOrderbookChanged: {
if (isAsk) quickscroll_timer.start()
function onOrderbookChanged()
{
if (isAsk)
{
quickscroll_timer.start()
}
}
function onMarketPairsChanged: {
if (isAsk) quickscroll_timer.start()
function onMarketPairsChanged()
{
if (isAsk)
{
quickscroll_timer.start()
}
}
}
}

0 comments on commit f2b86e0

Please sign in to comment.