Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-2pick
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
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
MyCard
ygopro-2pick
Commits
c113f401
Commit
c113f401
authored
Sep 05, 2017
by
mercury233
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
9e5b0c38
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
1 deletion
+30
-1
premake/irrlicht/irrlicht.patch
premake/irrlicht/irrlicht.patch
+30
-1
No files found.
premake/irrlicht/irrlicht.patch
View file @
c113f401
...
@@ -100,7 +100,7 @@ index f33b5a2..8375444 100644
...
@@ -100,7 +100,7 @@ index f33b5a2..8375444 100644
if (MarkBegin == MarkEnd)
if (MarkBegin == MarkEnd)
{
{
@@ -6
58
,6 +658,16 @@
bool CGUIEditBox::processKey(const SEvent& event)
@@ -6
64
,6 +658,16 @@
bool CGUIEditBox::processKey(const SEvent& event)
case KEY_ESCAPE:
case KEY_ESCAPE:
case KEY_TAB:
case KEY_TAB:
case KEY_SHIFT:
case KEY_SHIFT:
...
@@ -326,3 +326,32 @@ index 3f633da..c0712df 100644
...
@@ -326,3 +326,32 @@ index 3f633da..c0712df 100644
//! gets the processor speed in megahertz
//! gets the processor speed in megahertz
//! \param Mhz:
//! \param Mhz:
--- CGUIListBox.old.cpp 2017-09-05 04:20:28.619271300 +0800
+++ CGUIListBox.cpp 2017-09-05 04:11:37.367885500 +0800
@@ -411,6 +411,10 @@
case EMIE_LMOUSE_PRESSED_DOWN:
{
Selecting = true;
+
+ if(isPointInside(p))
+ selectNew(event.MouseInput.Y);
+
return true;
}
@@ -455,9 +459,12 @@
u32 now = os::Timer::getTime();
s32 oldSelected = Selected;
- Selected = getItemAt(AbsoluteRect.UpperLeftCorner.X, ypos);
- if (Selected<0 && !Items.empty())
- Selected = 0;
+ if (!onlyHover)
+ {
+ Selected = getItemAt(AbsoluteRect.UpperLeftCorner.X, ypos);
+ if(Selected<0 && !Items.empty())
+ Selected = 0;
+ }
recalculateScrollPos();
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