Builds on RTFD.io: Latest passes, stable fails

时间:2017-08-30 20:58:45

标签: python-sphinx read-the-docs

Whenever documentation should get updated on RTFD.io, two builds are built: stable and latest.

For weeks now, my latest builds without problem, but the stable does not how.

How can my stable fail while my latest builds?

The error that occurs is an private void GridViewAdapterLoad() { int pos = ((SnapScrollGridView)_gridView).FirstVisiblePosition; _gridView.Adapter = new GridViewAdapter( Activity, Resource.Layout.GridItem, Model.GridItems); _gridView.SetSelection(pos); } related to the fact that I load private void GridViewLoad(bool bNewItem) { _controller.LoadGridItems(); _gridView.Adapter = null; GridViewAdapterLoad(); if (bNewItem) { int count = _gridView.Count; int row = --count / _gridView.NumColumns; // floor not needed int pos = row * _gridView.NumColumns; ((SnapScrollGridView)_gridView).FirstVisiblePosition = pos; _gridView.SetSelection(pos); // Would be sweet to scroll from current position, but isn't. //_gridView.Post(() => { _gridView.SmoothScrollToPosition(pos); }); } } . I am also uncertain why there is this error because I use a mock import for exactly this module specified in my config: .card { float: left; width: 32%; padding: 5px; margin: .5%; text-align: right; border-radius: 15px 50px; -webkit-transition: width 2s, height 4s; /* Safari */ transition: width 2s, height 2s; } .card:hover { width: (insert new size as needed) background-color: #b9d6a0; color: black; } .

0 个答案:

没有答案
相关问题