diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-11-25 16:56:06 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-11-25 16:56:06 +0000 |
commit | b95792ae75b5d77a9183f7a45f76d14c7e30b74a (patch) | |
tree | 95c552d142ba234d2287ebc0fa1edfd7be0aefa3 | |
parent | 4e41e9299c406627d6b56990dc25b1f6ad1aae5d (diff) | |
download | xine-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.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; } |