Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Picturerama
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gruppe 12
Picturerama
Merge requests
!107
Tooltip for URL in upload scene.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Tooltip for URL in upload scene.
tooltipURL
into
dev
Overview
0
Commits
2
Pipelines
0
Changes
1
Merged
Hans William Forbrigd
requested to merge
tooltipURL
into
dev
4 years ago
Overview
0
Commits
2
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
dev
version 1
2b0fd4de
4 years ago
dev (base)
and
latest version
latest version
65ee063c
2 commits,
4 years ago
version 1
2b0fd4de
1 commit,
4 years ago
1 file
+
2
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/main/App/Scenes/UploadScene.java
+
2
−
0
Options
@@ -15,6 +15,7 @@ import javafx.scene.control.Button;
import
javafx.scene.control.Label
;
import
javafx.scene.control.ProgressIndicator
;
import
javafx.scene.control.TextField
;
import
javafx.scene.control.Tooltip
;
import
javafx.scene.input.KeyCode
;
import
javafx.stage.FileChooser
;
@@ -83,6 +84,7 @@ final class UploadScene extends SceneBuilder {
//Sets PromptText for TextFields
TITLE_FIELD
.
setPromptText
(
"Title here..."
);
URL_FIELD
.
setPromptText
(
"URL here..."
);
URL_FIELD
.
setTooltip
(
new
Tooltip
(
"https://example.com/image.jpg"
));
super
.
getGridPane
().
add
(
TITLE_LABEL
,
5
,
0
);
super
.
getGridPane
().
add
(
TITLE_FIELD
,
5
,
1
);
super
.
getGridPane
().
add
(
URL_LABEL
,
5
,
2
);
Loading