Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/orderbook-divergence' into nogeo
Browse files Browse the repository at this point in the history
  • Loading branch information
cipig committed Jun 14, 2024
2 parents ed1b0a6 + f2b86e0 commit f68c93e
Showing 1 changed file with 20 additions and 7 deletions.
27 changes: 20 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,15 +72,28 @@ Item
}

Connections {
target: API.app.trading_pg
onMarketModeChanged: {
if (isAsk) quickscroll_timer.start()
target: API.app.trading_pg;

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

0 comments on commit f68c93e

Please sign in to comment.