Fix market anchoring, closes #464
This commit is contained in:
parent
48ff67dc06
commit
d30ff220f6
|
@ -630,14 +630,15 @@ local function initInterface()
|
||||||
displaysTabBar = marketOffersPanel:getChildById('rightTabBar')
|
displaysTabBar = marketOffersPanel:getChildById('rightTabBar')
|
||||||
displaysTabBar:setContentWidget(marketOffersPanel:getChildById('rightTabContent'))
|
displaysTabBar:setContentWidget(marketOffersPanel:getChildById('rightTabContent'))
|
||||||
|
|
||||||
itemOffersPanel = g_ui.loadUI('ui/marketoffers/itemoffers')
|
itemStatsPanel = g_ui.loadUI('ui/marketoffers/itemstats')
|
||||||
displaysTabBar:addTab(tr('Offers'), itemOffersPanel)
|
displaysTabBar:addTab(tr('Statistics'), itemStatsPanel)
|
||||||
|
|
||||||
itemDetailsPanel = g_ui.loadUI('ui/marketoffers/itemdetails')
|
itemDetailsPanel = g_ui.loadUI('ui/marketoffers/itemdetails')
|
||||||
displaysTabBar:addTab(tr('Details'), itemDetailsPanel)
|
displaysTabBar:addTab(tr('Details'), itemDetailsPanel)
|
||||||
|
|
||||||
itemStatsPanel = g_ui.loadUI('ui/marketoffers/itemstats')
|
itemOffersPanel = g_ui.loadUI('ui/marketoffers/itemoffers')
|
||||||
displaysTabBar:addTab(tr('Statistics'), itemStatsPanel)
|
displaysTabBar:addTab(tr('Offers'), itemOffersPanel)
|
||||||
|
displaysTabBar:selectTab(displaysTabBar:getTab(tr('Offers')))
|
||||||
|
|
||||||
-- setup 'My Offer' section tabs
|
-- setup 'My Offer' section tabs
|
||||||
myOffersPanel = g_ui.loadUI('ui/myoffers')
|
myOffersPanel = g_ui.loadUI('ui/myoffers')
|
||||||
|
|
|
@ -23,3 +23,40 @@ MarketTabBarButton < TabBarButton
|
||||||
|
|
||||||
$on !checked:
|
$on !checked:
|
||||||
color: #f55e5e
|
color: #f55e5e
|
||||||
|
|
||||||
|
MarketRightTabBar < TabBar
|
||||||
|
MarketRightTabBarPanel < TabBarPanel
|
||||||
|
// TODO: inherit style from TabBarButton and adjust it
|
||||||
|
// anchors.left: none did not seem to work for me
|
||||||
|
MarketRightTabBarButton < UIButton
|
||||||
|
size: 20 25
|
||||||
|
font: verdana-11px-rounded
|
||||||
|
text-offset: 0 2
|
||||||
|
image-source: /images/ui/tabbutton_square
|
||||||
|
image-color: white
|
||||||
|
image-clip: 0 0 20 20
|
||||||
|
image-border: 3
|
||||||
|
icon-color: white
|
||||||
|
color: #aaaaaa
|
||||||
|
anchors.top: parent.top
|
||||||
|
padding: 5
|
||||||
|
|
||||||
|
anchors.right: prev.left
|
||||||
|
|
||||||
|
$first:
|
||||||
|
anchors.right: parent.right
|
||||||
|
|
||||||
|
$hover !checked:
|
||||||
|
image-clip: 0 20 20 20
|
||||||
|
color: white
|
||||||
|
|
||||||
|
$disabled:
|
||||||
|
image-color: #ffffff66
|
||||||
|
icon-color: #888888
|
||||||
|
|
||||||
|
$checked:
|
||||||
|
image-clip: 0 20 20 20
|
||||||
|
color: #ffffff
|
||||||
|
|
||||||
|
$on !checked:
|
||||||
|
color: #f55e5e
|
||||||
|
|
|
@ -16,7 +16,7 @@ Panel
|
||||||
border-width: 1
|
border-width: 1
|
||||||
border-color: #000000
|
border-color: #000000
|
||||||
|
|
||||||
MarketTabBar
|
MarketRightTabBar
|
||||||
id: rightTabBar
|
id: rightTabBar
|
||||||
width: 166
|
width: 166
|
||||||
height:25
|
height:25
|
||||||
|
|
Loading…
Reference in New Issue