Skip to content

Commit f46abee

Browse files
jonoomphferdnyc
authored andcommitted
Removing verbose debug statement when getting properties for property dialog (which happens as the user scrubs the timeline)
1 parent d039709 commit f46abee

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

src/windows/models/properties_model.py

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
"""
1+
"""
22
@file
33
@brief This file contains the clip properties model, used by the properties view
44
@author Jonathan Thomas <[email protected]>
5-
5+
66
@section LICENSE
7-
7+
88
Copyright (c) 2008-2018 OpenShot Studios, LLC
99
(http://www.openshotstudios.com). This file is part of
1010
OpenShot Video Editor (http://www.openshot.org), an open-source project
1111
dedicated to delivering high quality video editing and animation solutions
1212
to the world.
13-
13+
1414
OpenShot Video Editor is free software: you can redistribute it and/or modify
1515
it under the terms of the GNU General Public License as published by
1616
the Free Software Foundation, either version 3 of the License, or
1717
(at your option) any later version.
18-
18+
1919
OpenShot Video Editor is distributed in the hope that it will be useful,
2020
but WITHOUT ANY WARRANTY; without even the implied warranty of
2121
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2222
GNU General Public License for more details.
23-
23+
2424
You should have received a copy of the GNU General Public License
2525
along with OpenShot Library. If not, see <http://www.gnu.org/licenses/>.
2626
"""
@@ -564,7 +564,6 @@ def update_model(self, filter=""):
564564
# Get raw unordered JSON properties
565565
raw_properties = json.loads(c.PropertiesJSON(self.frame_number))
566566
all_properties = OrderedDict(sorted(raw_properties.items(), key=lambda x: x[1]['name']))
567-
log.info("Getting properties for frame %s: %s" % (self.frame_number, str(all_properties)))
568567

569568
# Check if filter was changed (if so, wipe previous model data)
570569
if self.previous_filter != filter:

0 commit comments

Comments
 (0)