Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
d420d017
Commit
d420d017
authored
May 16, 2011
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt, info_panel: correctly show the save Meta button
parent
1286801e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
modules/gui/qt4/components/info_panels.cpp
modules/gui/qt4/components/info_panels.cpp
+2
-3
No files found.
modules/gui/qt4/components/info_panels.cpp
View file @
d420d017
...
@@ -145,8 +145,9 @@ MetaPanel::MetaPanel( QWidget *parent,
...
@@ -145,8 +145,9 @@ MetaPanel::MetaPanel( QWidget *parent,
label
->
setContentsMargins
(
3
,
2
,
0
,
0
);
label
->
setContentsMargins
(
3
,
2
,
0
,
0
);
metaLayout
->
addWidget
(
label
,
line
++
,
0
,
1
,
7
);
metaLayout
->
addWidget
(
label
,
line
++
,
0
,
1
,
7
);
description_text
=
new
QTextEdit
;
description_text
=
new
QTextEdit
;
description_text
->
setAcceptRichText
(
false
);
metaLayout
->
addWidget
(
description_text
,
line
,
0
,
1
,
7
);
metaLayout
->
addWidget
(
description_text
,
line
,
0
,
1
,
7
);
CONNECT
(
description_text
,
textChanged
(),
this
,
enterEditMode
()
);
// CONNECT( description_text, textChanged(), this, enterEditMode() ); //FIXME
line
++
;
line
++
;
/* VLC_META_SETTING: Useless */
/* VLC_META_SETTING: Useless */
...
@@ -250,7 +251,6 @@ void MetaPanel::update( input_item_t *p_item )
...
@@ -250,7 +251,6 @@ void MetaPanel::update( input_item_t *p_item )
}
}
art_cover
->
showArtUpdate
(
file
);
art_cover
->
showArtUpdate
(
file
);
}
}
/**
/**
...
@@ -289,7 +289,6 @@ bool MetaPanel::isInEditMode()
...
@@ -289,7 +289,6 @@ bool MetaPanel::isInEditMode()
void
MetaPanel
::
enterEditMode
()
void
MetaPanel
::
enterEditMode
()
{
{
msg_Dbg
(
p_intf
,
"Entering Edit MetaData Mode"
);
setEditMode
(
true
);
setEditMode
(
true
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment