File diff r23552:91d98b9489aa → r23553:9f01781fc43d
src/network/network_content_gui.cpp
Show inline comments
 
@@ -397,13 +397,13 @@ class NetworkContentListWindow : public 
 

	
 
		this->FilterContentList();
 
		this->content.shrink_to_fit();
 
		this->content.RebuildDone();
 
		this->SortContentList();
 

	
 
		this->vscroll->SetCount(this->content.size()); // Update the scrollbar
 
		this->vscroll->SetCount((int)this->content.size()); // Update the scrollbar
 
		this->ScrollToSelected();
 
	}
 

	
 
	/** Sort content by name. */
 
	static int CDECL NameSorter(const ContentInfo * const *a, const ContentInfo * const *b)
 
	{
 
@@ -810,13 +810,13 @@ public:
 

	
 
			case WID_NCL_CHECKBOX:
 
			case WID_NCL_TYPE:
 
			case WID_NCL_NAME:
 
				if (this->content.SortType() == widget - WID_NCL_CHECKBOX) {
 
					this->content.ToggleSortOrder();
 
					if (this->content.size() > 0) this->list_pos = this->content.size() - this->list_pos - 1;
 
					if (this->content.size() > 0) this->list_pos = (int)this->content.size() - this->list_pos - 1;
 
				} else {
 
					this->content.SetSortType(widget - WID_NCL_CHECKBOX);
 
					this->content.ForceResort();
 
					this->SortContentList();
 
				}
 
				this->ScrollToSelected();
 
@@ -885,13 +885,13 @@ public:
 
			case WKC_HOME:
 
				/* jump to beginning */
 
				this->list_pos = 0;
 
				break;
 
			case WKC_END:
 
				/* jump to end */
 
				this->list_pos = this->content.size() - 1;
 
				this->list_pos = (int)this->content.size() - 1;
 
				break;
 

	
 
			case WKC_SPACE:
 
			case WKC_RETURN:
 
				if (keycode == WKC_RETURN || !IsWidgetFocused(WID_NCL_FILTER)) {
 
					if (this->selected != NULL) {