Skip to content

Commit

Permalink
Mejoras en paginacion en busqueda por palabras clave
Browse files Browse the repository at this point in the history
  • Loading branch information
EugenioAvila committed May 21, 2018
1 parent 52a7b47 commit cc3ad64
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions TorrentZilla/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -148,11 +148,13 @@ private void ComboBuscarPor_SelectionChanged(object sender, System.Windows.Contr
case "Por Categoria":
ComboCategoria.IsEnabled = true;
txtPalabrasClave.IsEnabled = false;
txtCantidadPaginas.IsEnabled = true;
_modo = (short)Herramientas.Enumeradores.eModosBusqueda.POR_CATEGORIA;
break;
case "Por Palabra Clave":
txtPalabrasClave.IsEnabled = true;
ComboCategoria.IsEnabled = false;
txtCantidadPaginas.IsEnabled = false;
_modo = (short)Herramientas.Enumeradores.eModosBusqueda.POR_PALABRA_CLAVE;
break;
}
Expand Down

0 comments on commit cc3ad64

Please sign in to comment.