diff options
-rw-r--r-- | src/xine-engine/vo_scale.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xine-engine/vo_scale.c b/src/xine-engine/vo_scale.c index 8ec8b2b1f..a785c9f5d 100644 --- a/src/xine-engine/vo_scale.c +++ b/src/xine-engine/vo_scale.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: vo_scale.c,v 1.17 2002/11/24 16:18:34 guenter Exp $ + * $Id: vo_scale.c,v 1.18 2002/11/25 16:56:06 mroi Exp $ * * Contains common code to calculate video scaling parameters. * In short, it will map frame dimensions to screen/window size. @@ -376,10 +376,10 @@ void vo_scale_init(vo_scale_t *this, int support_zoom, int scaling_disabled, this->output_horizontal_position = config->register_range(config, "video.horizontal_position", 50, 0, 100, - _("horizontal image position in the output window"), NULL, 0, + _("horizontal image position in the output window"), NULL, 10, vo_scale_horizontal_pos_changed, this) / 100.0; this->output_vertical_position = config->register_range(config, "video.vertical_position", 50, 0, 100, - _("vertical image position in the output window"), NULL, 0, + _("vertical image position in the output window"), NULL, 10, vo_scale_vertical_pos_changed, this) / 100.0; } |