Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
PlayWallDesktop
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
PlayWall
PlayWallDesktop
Commits
d44b8132
Commit
d44b8132
authored
5 years ago
by
Tobias Ullerich
Browse files
Options
Downloads
Patches
Plain Diff
Set initial file names for PlayoutLog export
parent
d4668c12
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
PlayWallPlugins/PlayWallPluginPlayoutLog/src/main/java/de/tobias/playpad/plugin/playout/viewcontroller/PlayoutLogViewController.java
+2
-0
2 additions, 0 deletions
...ugin/playout/viewcontroller/PlayoutLogViewController.java
with
2 additions
and
0 deletions
PlayWallPlugins/PlayWallPluginPlayoutLog/src/main/java/de/tobias/playpad/plugin/playout/viewcontroller/PlayoutLogViewController.java
+
2
−
0
View file @
d44b8132
...
...
@@ -146,6 +146,7 @@ public class PlayoutLogViewController extends NVC {
FileChooser
fileChooser
=
new
FileChooser
();
FileChooser
.
ExtensionFilter
extensionFilter
=
new
FileChooser
.
ExtensionFilter
(
"PDF"
,
"*.pdf"
);
fileChooser
.
getExtensionFilters
().
add
(
extensionFilter
);
fileChooser
.
setInitialFileName
(
String
.
format
(
"%s.pdf"
,
season
.
getName
()));
File
file
=
fileChooser
.
showSaveDialog
(
getContainingWindow
());
if
(
file
!=
null
)
{
...
...
@@ -163,6 +164,7 @@ public class PlayoutLogViewController extends NVC {
FileChooser
fileChooser
=
new
FileChooser
();
FileChooser
.
ExtensionFilter
extensionFilter
=
new
FileChooser
.
ExtensionFilter
(
"CSV"
,
"*.csv"
);
fileChooser
.
getExtensionFilters
().
add
(
extensionFilter
);
fileChooser
.
setInitialFileName
(
"PlayoutLog.csv"
);
File
file
=
fileChooser
.
showSaveDialog
(
getContainingWindow
());
if
(
file
==
null
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment