summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2002-11-25 16:56:06 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2002-11-25 16:56:06 +0000
commitb95792ae75b5d77a9183f7a45f76d14c7e30b74a (patch)
tree95c552d142ba234d2287ebc0fa1edfd7be0aefa3
parent4e41e9299c406627d6b56990dc25b1f6ad1aae5d (diff)
downloadxine-lib-b95792ae75b5d77a9183f7a45f76d14c7e30b74a.tar.gz
xine-lib-b95792ae75b5d77a9183f7a45f76d14c7e30b74a.tar.bz2
make guenter happy: raise the expertise level of the position entries
CVS patchset: 3366 CVS date: 2002/11/25 16:56:06
-rw-r--r--src/xine-engine/vo_scale.c6
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;
}