Skip to content

Commit

Permalink
tracker: allowing smaller sizes in the camera/video preview
Browse files Browse the repository at this point in the history
  • Loading branch information
wwmm committed Sep 23, 2024
1 parent 9782422 commit 8f71399
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ depends=(
'qt6-multimedia'
'qt6-charts'
'opencv'
'hdf5'
'vtk'
'linux-api-headers')
makedepends=('boost' 'cmake' 'extra-cmake-modules' 'git' 'ninja' 'intltool' 'appstream-glib' 'libmediainfo' 'fftw')
#source=("git+https:/wwmm/eyeofsauron.git#branch=eosqt")
Expand Down
4 changes: 2 additions & 2 deletions src/contents/kcfg/eyeofsauron_db.kcfg
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@
<entry name="videoWidth" type="Int">
<label>Video Preview Width</label>
<default>800</default>
<min>640</min>
<min>40</min>
<max>1920</max>
</entry>
<entry name="videoHeight" type="Int">
<label>Video Preview Height</label>
<default>600</default>
<min>480</min>
<min>30</min>
<max>1080</max>
</entry>
</group>
Expand Down
4 changes: 2 additions & 2 deletions src/contents/ui/PreferencesPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ FormCard.FormCardPage {
unit: i18n("px")
decimals: 0
stepSize: 1
from: 640
from: 40
to: 1920
value: EoSdb.videoWidth
onValueModified: (v) => {
Expand All @@ -95,7 +95,7 @@ FormCard.FormCardPage {
unit: i18n("px")
decimals: 0
stepSize: 1
from: 480
from: 30
to: 1080
value: EoSdb.videoHeight
onValueModified: (v) => {
Expand Down

0 comments on commit 8f71399

Please sign in to comment.